missingMembers.tsx 603 B

1234567891011121314151617181920212223242526272829303132
  1. import {MissingMember} from 'sentry/types';
  2. export function MissingMembers(params = []): MissingMember[] {
  3. return [
  4. {
  5. commitCount: 6,
  6. email: 'hello@sentry.io',
  7. externalId: 'hello',
  8. },
  9. {
  10. commitCount: 5,
  11. email: 'abcd@sentry.io',
  12. externalId: 'abcd',
  13. },
  14. {
  15. commitCount: 4,
  16. email: 'hola@sentry.io',
  17. externalId: 'hola',
  18. },
  19. {
  20. commitCount: 3,
  21. email: 'test@sentry.io',
  22. externalId: 'test',
  23. },
  24. {
  25. commitCount: 2,
  26. email: 'five@sentry.io',
  27. externalId: 'five',
  28. },
  29. ...params,
  30. ];
  31. }