Quick fix to not expose the builder ID outside of the role impl.

This commit is contained in:
Michael Drury 2022-11-08 19:48:16 +00:00
parent 4dceee33c5
commit 9cfdfc174b
1 changed files with 6 additions and 1 deletions

View File

@ -391,4 +391,9 @@ export function getExternalRoleID(roleId?: string) {
return roleId
}
export const BUILTIN_ROLE_IDS = BUILTIN_IDS
export const BUILTIN_ROLE_IDS = [
BUILTIN_IDS.ADMIN,
BUILTIN_IDS.POWER,
BUILTIN_IDS.BASIC,
BUILTIN_IDS.PUBLIC,
]