added new endpoint

This commit is contained in:
2024-11-02 22:32:35 +03:00
parent c34cd7f809
commit 3858a3c06e
3 changed files with 16 additions and 0 deletions

View File

@@ -43,6 +43,12 @@ class UserService {
async getAllGroupsForUser(userId) {
return (await db.query("SELECT groups FROM users WHERE id = $1", [userId])).rows[0].groups
}
async getById(userId) {
let res = (await db.query("SELECT * FROM users WHERE id = $1", [userId]))
if (res.rowCount == 0) throw new customError(`getById no user found`, responseCodes.responses.user.not_found)
return res.rows[0]
}
}
export default new UserService();