mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-11-10 12:26:35 +03:00
7 lines
92 B
TypeScript
7 lines
92 B
TypeScript
// Keep the order
|
|
export enum UserRole {
|
|
ADMINISTRATOR = 0,
|
|
MODERATOR = 1,
|
|
USER = 2
|
|
}
|