Skip to content

Commit

Permalink
Merge pull request #62 from meili-NG/fix-signup-schema
Browse files Browse the repository at this point in the history
chore: fix signup schema
  • Loading branch information
Alex4386 authored Dec 9, 2024
2 parents 09876fa + 732482a commit 1dde7c7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/routes/v1/meiling/signup/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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' },
},
},
},
},
Expand Down

0 comments on commit 1dde7c7

Please sign in to comment.