mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-05 02:39:33 +02:00
6 lines
92 B
TypeScript
6 lines
92 B
TypeScript
// Keep the order
|
|
export enum UserRole {
|
|
ADMINISTRATOR = 0,
|
|
MODERATOR = 1,
|
|
USER = 2
|
|
}
|