1
0
Fork 0
peertube/shared/models/users/user-role.ts
2021-12-28 15:34:55 +01:00

6 lines
98 B
TypeScript

// Keep the order
export const enum UserRole {
ADMINISTRATOR = 0,
MODERATOR = 1,
USER = 2
}