Fixing an issue with power user not being usable.
This commit is contained in:
parent
d0f2d4c2cd
commit
57029e737b
|
@ -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