From 732482a7ae1e131c39448733b4d9ecfdc3776998 Mon Sep 17 00:00:00 2001 From: JiHun Oh Date: Sun, 8 Dec 2024 13:42:30 +0900 Subject: [PATCH] chore: fix signup schema --- src/routes/v1/meiling/signup/index.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/routes/v1/meiling/signup/index.ts b/src/routes/v1/meiling/signup/index.ts index 84924068..75bc24dd 100644 --- a/src/routes/v1/meiling/signup/index.ts +++ b/src/routes/v1/meiling/signup/index.ts @@ -45,7 +45,11 @@ export function signupPlugin(app: FastifyInstance, opts: FastifyPluginOptions, d }, response: { 200: { - type: 'number', + description: 'Sign up success', + type: 'object', + properties: { + success: { type: 'boolean' }, + }, }, }, },