1
0
Fork 0
mirror of synced 2024-07-15 11:15:59 +12:00

Add endpoint to deactivate user from app on delete

This commit is contained in:
Adria Navarro 2023-01-12 16:26:46 +00:00
parent 24f8f3a7cb
commit 09b4533cc8
2 changed files with 37 additions and 0 deletions

View file

@ -173,3 +173,35 @@ export async function getFlags(ctx: BBContext) {
}
ctx.body = doc
}
export async function removeUserFromApp(ctx: BBContext) {
const { id: userId, prodAppId } = ctx.params
const devAppId = dbCore.getDevelopmentAppID(prodAppId)
for (let appId of [prodAppId, devAppId]) {
if (!(await dbCore.dbExists(appId))) {
continue
}
await context.doInAppContext(appId, async () => {
const db = context.getAppDB()
const metadataId = generateUserMetadataID(userId)
let metadata
try {
metadata = await db.get(metadataId)
} catch (err) {
return
}
let combined = {
...metadata,
status: constants.UserStatus.INACTIVE,
metadata: rolesCore.BUILTIN_ROLE_IDS.PUBLIC,
}
await db.put(combined)
})
}
ctx.body = {
message: `User ${userId} deleted from ${prodAppId} and ${"devapp"}.`,
}
}

View file

@ -47,5 +47,10 @@ router
authorized(PermissionType.USER, PermissionLevel.READ),
controller.getFlags
)
.delete(
"/api/users/metadata/:id/app/:prodAppId",
authorized(PermissionType.USER, PermissionLevel.WRITE),
controller.removeUserFromApp
)
export default router