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

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

export const SEARCH_DELAY = 200;

export const INVITE_MEMBERS_IN_COMMENT = 'invite_members_in_comment';

export const GROUP_FILTERS = {
  ALL: 'all',
  DESCENDANT_GROUPS: 'descendant_groups',
};

export const API_MESSAGES = {
  EMAIL_ALREADY_INVITED: __('Invite email has already been taken'),
};