refactor
This commit is contained in:
parent
7db3f4ca94
commit
08104c918b
|
@ -23,11 +23,10 @@ const MAX_USERS_UPLOAD_LIMIT = 1000
|
|||
|
||||
export const save = async (ctx: any) => {
|
||||
try {
|
||||
if (
|
||||
!ctx.request.body._id &&
|
||||
!ctx.internal &&
|
||||
(!ctx.user || !ctx.user.admin || !ctx.user.admin.global)
|
||||
) {
|
||||
const body = ctx.request.body
|
||||
const isCreate = !body._id
|
||||
const isAdmin = !!ctx.user.admin?.global
|
||||
if (isCreate && !isAdmin) {
|
||||
ctx.throw(403, "Only admin user can create new user.")
|
||||
}
|
||||
ctx.body = await sdk.users.save(ctx.request.body)
|
||||
|
|
Loading…
Reference in New Issue