sentryApp.js 445 B

1234567891011121314151617
  1. export function SentryApp(params = {}) {
  2. return {
  3. name: 'Sample App',
  4. slug: 'sample-app',
  5. scopes: ['project:read'],
  6. events: [],
  7. status: 'unpublished',
  8. uuid: '123456123456123456123456',
  9. webhookUrl: 'https://example.com/webhook',
  10. redirectUrl: 'https://example/com/setup',
  11. isAlertable: false,
  12. clientId: 'client-id',
  13. clientSecret: 'client-secret',
  14. overview: 'This is an app.',
  15. ...params,
  16. };
  17. }