Update role types in enums and role guards

This commit is contained in:
faris Aljohari
2024-05-11 21:01:39 +03:00
parent c30a21b04f
commit d1fa15cff1
3 changed files with 10 additions and 3 deletions

View File

@ -1,4 +1,5 @@
export enum RoleType {
USER = 'USER',
SUPER_ADMIN = 'SUPER_ADMIN',
ADMIN = 'ADMIN',
USER = 'USER',
}