accountEmails.js 375 B

1234567891011121314151617181920
  1. export function AccountEmails(params = []) {
  2. return [
  3. {
  4. email: 'primary@example.com',
  5. isPrimary: true,
  6. isVerified: true,
  7. },
  8. {
  9. email: 'secondary1@example.com',
  10. isPrimary: false,
  11. isVerified: true,
  12. },
  13. {
  14. email: 'secondary2@example.com',
  15. isPrimary: false,
  16. isVerified: false,
  17. },
  18. ...params,
  19. ];
  20. }