選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

mock.js 2.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. module.exports = {
  2. users: [],
  3. profiles: [],
  4. tags: [
  5. {
  6. tag_id: 1,
  7. tag_category: 'verification',
  8. tag_description: 'verified',
  9. is_active: true,
  10. },
  11. ],
  12. tag_associations: [
  13. {
  14. tag_association_id: 1,
  15. profile_id: 1,
  16. tag_id: 1,
  17. is_deleted: false,
  18. },
  19. {
  20. tag_association_id: 2,
  21. profile_id: 2,
  22. tag_id: 1,
  23. is_deleted: false,
  24. },
  25. {
  26. tag_association_id: 3,
  27. profile_id: 3,
  28. tag_id: 1,
  29. is_deleted: false,
  30. },
  31. {
  32. tag_association_id: 4,
  33. profile_id: 5,
  34. tag_id: 1,
  35. is_deleted: false,
  36. },
  37. ],
  38. response_keys: [
  39. {
  40. response_key_id: 1,
  41. response_key_category: 'grit',
  42. response_key_prompt: 'what is your name',
  43. response_key_description: null,
  44. },
  45. {
  46. response_key_id: 2,
  47. response_key_category: 'openness',
  48. response_key_prompt: 'what is your favorite color',
  49. response_key_description: null,
  50. },
  51. {
  52. response_key_id: 3,
  53. response_key_category: 'bravery',
  54. response_key_prompt: 'what is your quest',
  55. response_key_description: null,
  56. },
  57. {
  58. response_key_id: 4,
  59. response_key_category: 'empathy',
  60. response_key_prompt:
  61. 'what is the average flight speed of an unladen swallow',
  62. response_key_description: null,
  63. },
  64. {
  65. response_key_id: 5,
  66. response_key_category: 'honesty',
  67. response_key_prompt: 'what is your favorite color',
  68. response_key_description: null,
  69. },
  70. {
  71. response_key_id: 6,
  72. response_key_category: 'respect',
  73. response_key_prompt: 'what kind of schedule are you looking for',
  74. response_key_description: null,
  75. },
  76. {
  77. response_key_id: 7,
  78. response_key_category: 'locationPref',
  79. response_key_prompt: 'what is your zip code',
  80. response_key_description: null,
  81. },
  82. ],
  83. responses: [],
  84. memberships: [],
  85. groupings: [],
  86. messages: [],
  87. match_queues: [],
  88. }