@virtuacoplenny, the changes of this commit are not necessarily in source code that you introduced in https://github.com/jitsi/jitsi-meet/pull/1499 but I saw violations in files modified in the PR which I had to read in order to understand the PR.
16 lines
386 B
JavaScript
16 lines
386 B
JavaScript
/**
|
|
* The conference/room lock state which identifies that the password was set by
|
|
* the current/local participant/user.
|
|
*
|
|
* @type {string}
|
|
*/
|
|
export const LOCKED_LOCALLY = 'LOCKED_LOCALLY';
|
|
|
|
/**
|
|
* The conference/room lock state which identifies that the password was set by
|
|
* a remote participant/user.
|
|
*
|
|
* @type {string}
|
|
*/
|
|
export const LOCKED_REMOTELY = 'LOCKED_REMOTELY';
|