From e432db2f9fde53b6fa4835b5ac526bb600866a22 Mon Sep 17 00:00:00 2001 From: slaveeks Date: Fri, 23 Feb 2024 03:19:12 +0300 Subject: [PATCH] refactor: removeId -> removedId --- src/presentation/http/router/user.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/presentation/http/router/user.ts b/src/presentation/http/router/user.ts index 50e9fd11..82801ad5 100644 --- a/src/presentation/http/router/user.ts +++ b/src/presentation/http/router/user.ts @@ -158,7 +158,7 @@ const UserRouter: FastifyPluginCallback = (fastify, opts, don content: { 'application/json': { schema: { - removeId: { + removedId: { type: 'string', }, }, @@ -177,7 +177,7 @@ const UserRouter: FastifyPluginCallback = (fastify, opts, don }); return reply.send({ - removeId: toolId, + removedId: toolId, }); });