summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/filtered_search/constants.js
blob: e07dccd11e8f720570839b14186d183ab77f1395 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export const USER_TOKEN_TYPES = ['author', 'assignee', 'approved-by', 'reviewer', 'attention'];

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',
};