#2359 など
This commit is contained in:
parent
f0d818de24
commit
30444e5f1a
3 changed files with 6 additions and 1 deletions
|
@ -34,6 +34,10 @@ export default (params: any) => new Promise(async (res, rej) => {
|
|||
return rej('user not found');
|
||||
}
|
||||
|
||||
if (user.isAdmin) {
|
||||
return rej('cannot suspend admin');
|
||||
}
|
||||
|
||||
await User.findOneAndUpdate({
|
||||
_id: user._id
|
||||
}, {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue