commit.ts 563 B

1234567891011121314
  1. import {type Commit as TCommit} from 'sentry/types';
  2. export function Commit(params = {}): TCommit {
  3. return {
  4. dateCreated: '2018-11-30T18:46:31Z',
  5. message:
  6. '(improve) Add Links to Spike-Protection Email (#2408)\n\n* (improve) Add Links to Spike-Protection Email\r\n\r\nUsers now have access to useful links from the blogs and docs on Spike-protection.\r\n\r\n* fixed wording',
  7. id: 'f7f395d14b2fe29a4e253bf1d3094d61e6ad4434',
  8. author: TestStubs.CommitAuthor(),
  9. repository: TestStubs.Repository(),
  10. releases: [],
  11. ...params,
  12. };
  13. }