1
0
mirror of https://github.com/ragestudio/comty.git synced 2025-07-03 22:34:17 +00:00
2024-03-11 20:28:19 +00:00

10 lines
218 B
JavaScript

import Users from "@classes/users"
export default {
middlewares: ["withAuthentication"],
fn: async (req) => {
return await Users.data({
user_id: req.auth.session.user_id,
})
}
}