mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-30 12:24:25 +02:00
9 lines
153 B
JavaScript
9 lines
153 B
JavaScript
const PrivilegeLevels = {
|
|
NONE: false,
|
|
READ_ONLY: 'readOnly',
|
|
READ_AND_WRITE: 'readAndWrite',
|
|
OWNER: 'owner'
|
|
}
|
|
|
|
module.exports = PrivilegeLevels
|