debian-mirror-gitlab/spec/frontend/pages/projects/learn_gitlab/components/mock_data.js

64 lines
1.4 KiB
JavaScript
Raw Normal View History

2021-04-17 20:07:23 +05:30
export const testActions = {
gitWrite: {
url: 'http://example.com/',
completed: true,
svg: 'http://example.com/images/illustration.svg',
},
userAdded: {
url: 'http://example.com/',
completed: true,
svg: 'http://example.com/images/illustration.svg',
},
pipelineCreated: {
url: 'http://example.com/',
completed: false,
svg: 'http://example.com/images/illustration.svg',
},
trialStarted: {
url: 'http://example.com/',
completed: false,
svg: 'http://example.com/images/illustration.svg',
},
codeOwnersEnabled: {
url: 'http://example.com/',
completed: false,
svg: 'http://example.com/images/illustration.svg',
},
requiredMrApprovalsEnabled: {
url: 'http://example.com/',
completed: false,
svg: 'http://example.com/images/illustration.svg',
},
mergeRequestCreated: {
url: 'http://example.com/',
completed: false,
svg: 'http://example.com/images/illustration.svg',
},
securityScanEnabled: {
url: 'http://example.com/',
completed: false,
svg: 'http://example.com/images/illustration.svg',
},
2021-04-29 21:17:54 +05:30
issueCreated: {
url: 'http://example.com/',
completed: false,
svg: 'http://example.com/images/illustration.svg',
},
2021-04-17 20:07:23 +05:30
};
2021-06-08 01:23:25 +05:30
export const testSections = {
workspace: {
svg: 'workspace.svg',
},
deploy: {
svg: 'deploy.svg',
},
plan: {
svg: 'plan.svg',
},
};
2022-01-26 12:08:38 +05:30
export const testProject = {
name: 'test-project',
};