summaryrefslogtreecommitdiff
path: root/src/mocks/handlers.ts
blob: 63b1a9a961e47142cc5a7feb7f801e0a8a647e4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import { http, HttpResponse } from 'msw';
import { nanoid } from '@reduxjs/toolkit';

const token = nanoid();

export const handlers = [
  http.post('/guest-login', () => {
    return HttpResponse.json(
      {
        guest: {
          id: 1,
          firstName: 'Michael',
          lastName: 'Hunteman',
          attendance: 'false',
          meal: '',
          restrictions: '',
          plusOne: '',
          advice: ''
        },
        token,
      }
    )
  }),
  http.patch('/guests/1', () => {
    return HttpResponse.json(
      {
        id: 1,
        firstName: 'Michael',
        lastName: 'Hunteman',
        attendance: 'true',
        meal: 'beef',
        restrictions: '',
        plusOne: '',
        advice: ''
      }
    )
  })
];