mirror of https://github.com/OpenVidu/openvidu.git
5 lines
382 B
TypeScript
5 lines
382 B
TypeScript
export enum OpenViduRole {
|
|
SUBSCRIBER = 'SUBSCRIBER', // Can subscribe to published streams of other users
|
|
PUBLISHER = 'PUBLISHER', // SUBSCRIBER permissions + can subscribe to published streams of other users and publish their own streams
|
|
MODERATOR = 'MODERATOR' // SUBSCRIBER + PUBLIHSER permissions + can force unpublish() and disconnect() over a third-party stream or user
|
|
} |