summaryrefslogtreecommitdiff
path: root/src/mocks/handlers.ts
blob: 6bd17fae80a17f3c3d671f2d77a8fa3b6ad76a35 (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
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: '',
          email: '',
          message: ''
        },
        token,
      }
    )
  }),
  http.patch('/guests/1', () => {
    return HttpResponse.json(
      {
        id: 1,
        firstName: 'Michael',
        lastName: 'Hunteman',
        attendance: 'true',
        meal: 'beef',
        email: '',
        message: ''
      }
    )
  })
];