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

constants.js « issuable_bulk_update_sidebar « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ad15b25f9cf1bd3688cb020b3dadea23c0bd4202 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { __ } from '~/locale';

export const ISSUE_STATUS_MODIFIERS = {
  REOPEN: 'reopen',
  CLOSE: 'close',
};

export const ISSUE_STATUS_SELECT_OPTIONS = [
  {
    value: ISSUE_STATUS_MODIFIERS.REOPEN,
    text: __('Open'),
  },
  {
    value: ISSUE_STATUS_MODIFIERS.CLOSE,
    text: __('Closed'),
  },
];