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

modal_base.js « mock_data « invite_members « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c44e890da3df3b230f824c418f0f2763c5aab188 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export const propsData = {
  modalTitle: '_modal_title_',
  modalId: '_modal_id_',
  name: '_name_',
  accessLevels: { Guest: 10, Reporter: 20, Developer: 30, Maintainer: 40, Owner: 50 },
  defaultAccessLevel: 20,
  helpLink: 'https://example.com',
  labelIntroText: '_label_intro_text_',
  labelSearchField: '_label_search_field_',
  formGroupDescription: '_form_group_description_',
};

export const membersPath = '/members_path';
export const purchasePath = '/purchase_path';