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

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

export const NEVER_TIME_RANGE = {
  label: __('Never'),
  name: 'never',
};

export const TIME_RANGES_WITH_NEVER = [NEVER_TIME_RANGE, ...timeRanges];

export const AVAILABILITY_STATUS = {
  BUSY: 'busy',
  NOT_SET: 'not_set',
};