2017-04-13 00:23:43 +00:00
|
|
|
/**
|
2017-04-18 21:49:52 +00:00
|
|
|
* The conference/room lock state which identifies that the password was set by
|
|
|
|
* the current/local participant/user.
|
2017-04-13 00:23:43 +00:00
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
*/
|
|
|
|
export const LOCKED_LOCALLY = 'LOCKED_LOCALLY';
|
|
|
|
|
|
|
|
/**
|
2017-04-18 21:49:52 +00:00
|
|
|
* The conference/room lock state which identifies that the password was set by
|
|
|
|
* a remote participant/user.
|
|
|
|
*
|
2017-04-13 00:23:43 +00:00
|
|
|
* @type {string}
|
|
|
|
*/
|
|
|
|
export const LOCKED_REMOTELY = 'LOCKED_REMOTELY';
|