Lewis Youl

Results 3 comments of Lewis Youl

You could monkey patch the ParamsScope class: ```ruby class Grape::Validations::ParamsScope def process_query -> (query) { puts 'some fancy processing' } end end ``` then: ```ruby params do optional :query, type:...

Hi I am also having this issue. Parameters being specified as `in: :body` are not being sent to my controller. I am using [grape](https://github.com/ruby-grape/grape). Did you find a solution to...

I'm having exactly this issue. Did you find a solution?