Lyubo Marinov 55c3f5ddff Comply w/ coding style
@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.
2017-04-19 20:56:19 -05:00

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';