Skip to content

Cannot use both body_name and detail with desc #655

@magni-

Description

@magni-
desc 'Create a foo', body_name: 'Body' do
  detail 'This endpoint is used to create foos'
end
post ...

This totally ignores the body_name setting.

desc 'Create a foo' do
  body_name 'Body'
  detail 'This endpoint is used to create foos'
end
post ...

This blows up: NoMethodError: undefined method 'body_name'

Is there a way to use both?

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions