Fixing an issue with power user not being usable.
This commit is contained in:
parent
1c73786226
commit
79cfc5ea01
|
@ -32,7 +32,7 @@ const USERS_TABLE_SCHEMA = {
|
|||
constraints: {
|
||||
type: "string",
|
||||
presence: false,
|
||||
inclusion: Object.keys(BUILTIN_ROLE_IDS),
|
||||
inclusion: Object.values(BUILTIN_ROLE_IDS),
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
|
@ -4,7 +4,7 @@ const { BUILTIN_PERMISSION_IDS } = require("./permissions")
|
|||
|
||||
const BUILTIN_IDS = {
|
||||
ADMIN: "ADMIN",
|
||||
POWER: "POWER_USER",
|
||||
POWER: "POWER",
|
||||
BASIC: "BASIC",
|
||||
PUBLIC: "PUBLIC",
|
||||
BUILDER: "BUILDER",
|
||||
|
|
Loading…
Reference in New Issue