1
0
Fork 0
mirror of synced 2024-06-30 20:10:54 +12:00

Adding a get self endpoint in the global users.

This commit is contained in:
mike12345567 2021-05-19 13:37:59 +01:00
parent 5e7ca07af7
commit 91ed6679c4
3 changed files with 12 additions and 3 deletions

View file

@ -48,7 +48,7 @@ exports.updateMetadata = async function (ctx) {
const appId = ctx.appId
const db = new CouchDB(appId)
const user = ctx.request.body
// make sure to always remove global user props
// make sure to always remove some of the global user props
delete user.password
delete user.roles
delete user.builder

View file

@ -96,7 +96,15 @@ exports.destroy = async ctx => {
}
}
exports.self = async ctx => {
exports.getSelf = async ctx => {
ctx.params = {
id: ctx.user._id
}
// this will set the body
await exports.find(ctx)
}
exports.updateSelf = async ctx => {
const db = new CouchDB(GLOBAL_DB)
const user = await db.get(ctx.user._id)
if (ctx.request.body.password) {

View file

@ -60,7 +60,8 @@ router
.post("/api/admin/users", buildUserSaveValidation(), controller.save)
.get("/api/admin/users", controller.fetch)
.post("/api/admin/users/init", controller.adminUser)
.post("/api/admin/users/self", buildUserSaveValidation(true), controller.self)
.get("/api/admin/users/self", controller.getSelf)
.post("/api/admin/users/self", buildUserSaveValidation(true), controller.updateSelf)
.delete("/api/admin/users/:id", controller.destroy)
.get("/api/admin/users/:id", controller.find)
.get("/api/admin/roles/:appId")