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

admin_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: 42d0fbacca058f1e946104ee5fbae6764c35da87 (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
28
29
30
31
32
33
34
35
36
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',
  },
  {
    formattedKey: __('Tag'),
    key: 'tag',
    type: 'array',
    param: 'name[]',
    symbol: '~',
    icon: 'tag',
    tag: '~tag',
  },
];

const AdminRunnersFilteredSearchTokenKeys = new FilteredSearchTokenKeys(tokenKeys);

export default AdminRunnersFilteredSearchTokenKeys;