summaryrefslogtreecommitdiff
path: root/spec/frontend/invite_members/mock_data/member_modal.js
blob: 1b0cc57fb5bc2c666cfcc5f955479fdfbe54a9c0 (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
37
export const propsData = {
  id: '1',
  rootId: '1',
  name: 'test name',
  isProject: false,
  accessLevels: { Guest: 10, Reporter: 20, Developer: 30, Maintainer: 40, Owner: 50 },
  defaultAccessLevel: 30,
  helpLink: 'https://example.com',
  tasksToBeDoneOptions: [
    { text: 'First task', value: 'first' },
    { text: 'Second task', value: 'second' },
  ],
  projects: [
    { text: 'First project', value: '1' },
    { text: 'Second project', value: '2' },
  ],
};

export const inviteSource = 'unknown';
export const newProjectPath = 'projects/new';

export const user1 = { id: 1, name: 'Name One', username: 'one_1', avatar_url: '' };
export const user2 = { id: 2, name: 'Name Two', username: 'one_2', avatar_url: '' };
export const user3 = {
  id: 'user-defined-token',
  name: 'email@example.com',
  username: 'one_2',
  avatar_url: '',
};
export const user4 = {
  id: 'user-defined-token',
  name: 'email4@example.com',
  username: 'one_4',
  avatar_url: '',
};

export const GlEmoji = { template: '<img/>' };