mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
13 lines
335 B
JavaScript
Executable File
13 lines
335 B
JavaScript
Executable File
import { Session } from "@db_models"
|
|
|
|
export default {
|
|
method: "GET",
|
|
route: "/all",
|
|
middlewares: ["withAuthentication"],
|
|
fn: async (req, res) => {
|
|
const sessions = await Session.find({ user_id: req.user._id.toString() }, { token: 0 })
|
|
.sort({ date: -1 })
|
|
|
|
return res.json(sessions)
|
|
},
|
|
} |