2018-03-17 18:26:18 +05:30
|
|
|
export const visibilityOptions = {
|
|
|
|
PRIVATE: 0,
|
|
|
|
INTERNAL: 10,
|
|
|
|
PUBLIC: 20,
|
|
|
|
};
|
|
|
|
|
|
|
|
export const visibilityLevelDescriptions = {
|
2018-12-13 13:39:08 +05:30
|
|
|
[visibilityOptions.PRIVATE]:
|
|
|
|
'The project is accessible only by members of the project. Access must be granted explicitly to each user.',
|
2018-03-17 18:26:18 +05:30
|
|
|
[visibilityOptions.INTERNAL]: 'The project can be accessed by any user who is logged in.',
|
2018-12-13 13:39:08 +05:30
|
|
|
[visibilityOptions.PUBLIC]:
|
|
|
|
'The project can be accessed by anyone, regardless of authentication.',
|
2018-03-17 18:26:18 +05:30
|
|
|
};
|