2022-04-04 11:22:00 +05:30
|
|
|
export const propsData = {
|
|
|
|
id: '1',
|
2022-06-21 17:19:12 +05:30
|
|
|
rootId: '1',
|
2022-04-04 11:22:00 +05:30
|
|
|
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';
|
2022-07-16 23:28:13 +05:30
|
|
|
export const freeUsersLimit = 5;
|
|
|
|
export const membersCount = 1;
|
2022-04-04 11:22:00 +05:30
|
|
|
|
|
|
|
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/>' };
|