diff --git a/src/back/collections/users.ts b/src/back/collections/users.ts index 330ba4d..cf6b630 100644 --- a/src/back/collections/users.ts +++ b/src/back/collections/users.ts @@ -30,12 +30,13 @@ export default class Users extends Collections.users { "ADMIN", `Creating an admin account for ${app.manifest.admin_email}` ); - await app.collections.users.suCreate({ + const { id } = await app.collections.users.suCreate({ username, password: ADMIN_CREDENTIALS.password, email: ADMIN_CREDENTIALS.email, roles: [], }); + await app.collections["user-roles"].suCreate({ user: id, role: "admin" }); } }); }