middleware icon indicating copy to clipboard operation
middleware copied to clipboard

[zod-openapi] How to add group summary?

Open vickyRathee opened this issue 1 year ago • 0 comments

How can I add a summary to a particular controller/group ?

image

I am able to write description for each route, but not for parent group.

users .openapi(createRoute({
  method: 'get',
  path: '/users/{id}',
  description: 'Get user by id',
  request: {
    params: ParamsSchema,
  },
  responses: {
    200: {
      content: {
        'application/json': {
          schema: UserSchema,
        },
      },
    },
  },
}))

vickyRathee avatar Aug 28 '24 07:08 vickyRathee