fix: remove unnecessary things

This commit is contained in:
Andras Bacsai 2022-10-03 11:32:15 +02:00
parent ed02c1ae36
commit d1c0fe503e

View File

@ -26,7 +26,6 @@ const root: FastifyPluginAsync = async (fastify): Promise<void> => {
fastify.delete<BodyId>('/user/remove', async (request, reply) => await removeUser(request, reply));
fastify.post<BodyId>('/user/password', async (request, reply) => await changePassword(request, reply));
// fastify.delete('/user', async (request, reply) => await deleteUser(request, reply));
};