2020-07-28 23:09:34 +05:30
|
|
|
export const mockIntegrationProps = {
|
|
|
|
id: 25,
|
2020-11-24 15:15:51 +05:30
|
|
|
initialActivated: true,
|
2020-07-28 23:09:34 +05:30
|
|
|
showActive: true,
|
2021-01-03 14:25:43 +05:30
|
|
|
editable: true,
|
2020-07-28 23:09:34 +05:30
|
|
|
triggerFieldsProps: {
|
|
|
|
initialTriggerCommit: false,
|
|
|
|
initialTriggerMergeRequest: false,
|
|
|
|
initialEnableComments: false,
|
|
|
|
},
|
|
|
|
jiraIssuesProps: {},
|
|
|
|
triggerEvents: [],
|
|
|
|
fields: [],
|
|
|
|
type: '',
|
|
|
|
inheritFromId: 25,
|
|
|
|
};
|
2022-01-26 12:08:38 +05:30
|
|
|
|
|
|
|
export const mockJiraIssueTypes = [
|
|
|
|
{ id: '1', name: 'issue', description: 'issue' },
|
|
|
|
{ id: '2', name: 'bug', description: 'bug' },
|
|
|
|
{ id: '3', name: 'epic', description: 'epic' },
|
|
|
|
];
|