31 lines
571 B
JavaScript
31 lines
571 B
JavaScript
|
export const mockProjects = [
|
||
|
{
|
||
|
id: 'test',
|
||
|
name: 'test',
|
||
|
nameWithNamespace: 'test',
|
||
|
avatarUrl: 'https://gitlab.com',
|
||
|
path: 'test-path',
|
||
|
fullPath: 'test-path',
|
||
|
repository: {
|
||
|
empty: false,
|
||
|
},
|
||
|
userPermissions: {
|
||
|
pushCode: true,
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
id: 'gitlab',
|
||
|
name: 'GitLab',
|
||
|
nameWithNamespace: 'gitlab-org/gitlab',
|
||
|
avatarUrl: 'https://gitlab.com',
|
||
|
path: 'gitlab',
|
||
|
fullPath: 'gitlab-org/gitlab',
|
||
|
repository: {
|
||
|
empty: false,
|
||
|
},
|
||
|
userPermissions: {
|
||
|
pushCode: true,
|
||
|
},
|
||
|
},
|
||
|
];
|