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

constants.js « protected_branches « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5342874250cfea9fac71adb872f2d4033a22cbd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export const ACCESS_LEVELS = {
  MERGE: 'merge_access_levels',
  PUSH: 'push_access_levels',
};

export const LEVEL_TYPES = {
  ROLE: 'role',
  USER: 'user',
  GROUP: 'group',
  DEPLOY_KEY: 'deploy_key',
};

export const BRANCH_RULES_ANCHOR = '#branch-rules';

export const IS_PROTECTED_BRANCH_CREATED = 'is_protected_branch_created';

export const PROTECTED_BRANCHES_ANCHOR = '#js-protected-branches-settings';