summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/projects/shared/permissions/constants.js
blob: ce47562f259db48aef2ff8117dde9e6e977c73b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
export const visibilityOptions = {
  PRIVATE: 0,
  INTERNAL: 10,
  PUBLIC: 20,
};

export const visibilityLevelDescriptions = {
  [visibilityOptions.PRIVATE]: 'The project is accessible only by members of the project. Access must be granted explicitly to each user.',
  [visibilityOptions.INTERNAL]: 'The project can be accessed by any user who is logged in.',
  [visibilityOptions.PUBLIC]: 'The project can be accessed by anyone, regardless of authentication.',
};