1
0
mirror of https://github.com/ragestudio/comty.git synced 2025-06-26 02:44:16 +00:00
2024-03-05 10:20:36 +00:00

8 lines
181 B
JavaScript
Executable File

export default {
method: "GET",
route: "/current",
middlewares: ["withAuthentication"],
fn: async (req, res) => {
return res.json(req.currentSession)
}
}