mirror of
https://github.com/umami-software/umami.git
synced 2026-02-07 22:27:16 +01:00
Allow user to change admin username.
This commit is contained in:
parent
e31181c676
commit
faf6438852
5 changed files with 21 additions and 14 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue