sentryAppInstallation.js 312 B

1234567891011121314
  1. export function SentryAppInstallation(params = {}) {
  2. return {
  3. uuid: 'd950595e-cba2-46f6-8a94-b79e42806f98',
  4. app: {
  5. slug: 'sample-app',
  6. uuid: 'f4d972ba-1177-4974-943e-4800fe8c7d05',
  7. },
  8. organization: {
  9. slug: 'the-best-org',
  10. },
  11. status: 'installed',
  12. ...params,
  13. };
  14. }