| 17 | } |
| 18 | |
| 19 | interface UserDetails { |
| 20 | id: string; |
| 21 | token?: string; |
| 22 | name: string; |
| 23 | isGuest?: boolean; |
| 24 | } |
| 25 | |
| 26 | // this route is to be hit when the user wants to login as a guest |
| 27 | router.post('/guest', async (req: Request, res: Response) => { |
nothing calls this directly
no outgoing calls
no test coverage detected