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?