mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-08 08:39:03 +02:00
f39ca200b9
* Support for adding reviewer role * added collaboratorsGetter tests * emit toggle-track-changes when reviewer is added GitOrigin-RevId: 5b831102d561f5dbc4b23ab9f6dc63e3a87ea103
10 lines
174 B
JavaScript
10 lines
174 B
JavaScript
const PrivilegeLevels = {
|
|
NONE: false,
|
|
READ_ONLY: 'readOnly',
|
|
READ_AND_WRITE: 'readAndWrite',
|
|
REVIEW: 'review',
|
|
OWNER: 'owner',
|
|
}
|
|
|
|
module.exports = PrivilegeLevels
|