data.js 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. const contacts = [
  2. {
  3. _id: "604cec2a45d8c632bc1fake1",
  4. name: "FAKE-ONE",
  5. phone: "0915088491",
  6. subscription: "free",
  7. },
  8. {
  9. _id: "604cec3345d8c632bc1fake2",
  10. name: "FAKE-SECOND",
  11. phone: "0914088491",
  12. subscription: "free",
  13. },
  14. {
  15. _id: "604cec3345d8c632bc1fake3",
  16. name: "FAKE-SECOND",
  17. phone: "0914088491",
  18. subscription: "free",
  19. },
  20. ];
  21. const newContact = {
  22. name: "newUser",
  23. phone: "9810088491",
  24. subscription: "free",
  25. };
  26. const User = {
  27. subscription: "free",
  28. token:
  29. "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjYwNGUzMTY4YTA1ZDNkMzQzMDBjMDA0ZiIsImlhdCI6MTYxNTczNzIyNSwiZXhwIjoxNjE1NzQ0NDI1fQ.8byA4KylqGkp9j9AV1eqL1EogAA0VDxr2GbBB7YIkoA",
  30. _id: "604cec3345d8c632bc1fake2",
  31. email: "12345678@gmail.com",
  32. password: "$2a$08$7Ri2ggA1VXgal7.MUrnRa.rS1lja0y6j0VRQMu495ssO5PFyQ1hQO",
  33. avatarUrl:
  34. "https://s.gravatar.com/avatar/0ffd40d14c2320ab59aa28ff91e8d813?s=250",
  35. };
  36. const users = [];
  37. users[0] = User;
  38. const newUser = { email: "newuser@gmail.com", password: "newUser" };
  39. module.exports = { contacts, newContact, users, User, newUser };