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: 6cd6f9c9906da72d2fb6932b52af32c2a82558b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
export const USER_TOKEN_TYPES = ['author', 'assignee', 'approved-by'];

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

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

export const MAX_HISTORY_SIZE = 5;