commit.js 549 B

1234567891011121314
  1. import {CommitAuthor} from './commitAuthor';
  2. import {Repository} from './repository';
  3. export function Commit(params = {}) {
  4. return {
  5. dateCreated: '2018-11-30T18:46:31Z',
  6. message:
  7. '(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',
  8. id: 'f7f395d14b2fe29a4e253bf1d3094d61e6ad4434',
  9. author: CommitAuthor(),
  10. repository: Repository(),
  11. ...params,
  12. };
  13. }