Allow user to change admin username.

This commit is contained in:
Mike Cao 2022-04-03 22:25:32 -07:00
parent e31181c676
commit faf6438852
5 changed files with 21 additions and 14 deletions

View file

@ -23,10 +23,7 @@ export default async (req, res) => {
// Only admin can change these fields
if (current_user_is_admin) {
// Cannot change username of admin
if (username !== 'admin') {
data.username = username;
}
data.username = username;
data.is_admin = is_admin;
}
@ -37,7 +34,7 @@ export default async (req, res) => {
return badRequest(res, 'Account already exists');
}
}
console.log('------------------\n', data);
const updated = await updateAccount(user_id, data);
return ok(res, updated);