mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-11 03:24:16 +00:00
8 lines
181 B
JavaScript
Executable File
8 lines
181 B
JavaScript
Executable File
export default {
|
|
method: "GET",
|
|
route: "/current",
|
|
middlewares: ["withAuthentication"],
|
|
fn: async (req, res) => {
|
|
return res.json(req.currentSession)
|
|
}
|
|
} |