platformExternalIssue.js 208 B

12345678910
  1. export function PlatformExternalIssue(params = {}) {
  2. return {
  3. id: '1',
  4. groupId: '1',
  5. serviceType: 'foo',
  6. displayName: 'project#1',
  7. webUrl: 'https://example.com/1',
  8. ...params,
  9. };
  10. }