summaryrefslogtreecommitdiff
path: root/client/src/mocks/handlers.ts
blob: 0e882eedf85d6002ecd8c8bf19e0b2580042df0d (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
import { http, HttpResponse } from 'msw';
import { nanoid } from '@reduxjs/toolkit';

const token = nanoid();

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