subscriptions.js 708 B

123456789101112131415161718192021222324
  1. export function Subscriptions(params = []) {
  2. return [
  3. {
  4. subscribedDate: '2018-01-08T05:14:59.102Z',
  5. subscribed: true,
  6. listDescription:
  7. 'Everything you need to know about Sentry features, integrations, partnerships, and launches.',
  8. listId: 2,
  9. unsubscribedDate: null,
  10. listName: 'Product & Feature Updates',
  11. email: 'test@sentry.io',
  12. },
  13. {
  14. subscribedDate: null,
  15. subscribed: false,
  16. listDescription: "Our monthly update on what's new with Sentry and the community.",
  17. listId: 1,
  18. unsubscribedDate: '2018-01-08T19:31:42.546Z',
  19. listName: 'Sentry Newsletter',
  20. email: 'test@sentry.io',
  21. },
  22. ...params,
  23. ];
  24. }