(
fastify: FastifyInstance,
{ id }: { id: string }
)
| 848 | } |
| 849 | |
| 850 | async function deleteAuthToken( |
| 851 | fastify: FastifyInstance, |
| 852 | { id }: { id: string } |
| 853 | ) { |
| 854 | await fastify.prisma.authToken.delete({ |
| 855 | where: { id } |
| 856 | }); |
| 857 | } |
| 858 | |
| 859 | fastify.get( |
| 860 | '/confirm-email', |
no outgoing calls
no test coverage detected