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

group_runners_filtered_search_token_keys.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: ceeb71c4eec864b5b5fea52960a3985e14c1295c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { __ } from '~/locale';
import FilteredSearchTokenKeys from './filtered_search_token_keys';

const tokenKeys = [
  {
    formattedKey: __('Status'),
    key: 'status',
    type: 'string',
    param: 'status',
    symbol: '',
    icon: 'messages',
    tag: 'status',
  },
  {
    formattedKey: __('Type'),
    key: 'type',
    type: 'string',
    param: 'type',
    symbol: '',
    icon: 'cube',
    tag: 'type',
  },
];

const GroupRunnersFilteredSearchTokenKeys = new FilteredSearchTokenKeys(tokenKeys);

export default GroupRunnersFilteredSearchTokenKeys;