Welcome to mirror list, hosted at ThFree Co, Russian Federation.

constants.js « settings « projects « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fadb1f4f1780df4655cc8b45538f3cb0d7442292 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
export const LEVEL_TYPES = {
  ROLE: 'role',
  USER: 'user',
  GROUP: 'group',
};

export const LEVEL_ID_PROP = {
  ROLE: 'access_level',
  USER: 'user_id',
  GROUP: 'group_id',
};

export const ACCESS_LEVEL_NONE = 0;