14 lines
361 B
JavaScript
14 lines
361 B
JavaScript
export const propsData = {
|
|
id: '1',
|
|
rootId: '1',
|
|
name: 'test name',
|
|
isProject: false,
|
|
invalidGroups: [],
|
|
accessLevels: { Guest: 10, Reporter: 20, Developer: 30, Maintainer: 40, Owner: 50 },
|
|
defaultAccessLevel: 10,
|
|
helpLink: 'https://example.com',
|
|
fullPath: 'project',
|
|
freeUserCapEnabled: false,
|
|
};
|
|
|
|
export const sharedGroup = { id: '981' };
|