You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class Products < Grape::API
namespace :products do
route_param :product_id, type: Integer
desc 'Return a given product by id.', nickname: 'getProductById'
get do
end
end
end
end
In this case, overriding the nickname doesn't work and I get the auto-generated one. Any idea? I'm using grape-swagger 0.22.
The text was updated successfully, but these errors were encountered:
I have the following API end-point:
In this case, overriding the
nickname
doesn't work and I get the auto-generated one. Any idea? I'm usinggrape-swagger
0.22.The text was updated successfully, but these errors were encountered: