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

constants.js « filtered_search « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e2d6936acbde891516db5676b994ee5237271ab2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
export const USER_TOKEN_TYPES = ['author', 'assignee', 'approved-by', 'reviewer'];

export const DROPDOWN_TYPE = {
  hint: 'hint',
  operator: 'operator',
};

export const FILTER_TYPE = {
  none: 'none',
  any: 'any',
};

export const MAX_HISTORY_SIZE = 5;

export const FILTERED_SEARCH = {
  MERGE_REQUESTS: 'merge_requests',
  ISSUES: 'issues',
  ADMIN_RUNNERS: 'admin/runners',
  GROUP_RUNNERS_ANCHOR: 'runners-settings',
};