We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This seems to be an issue again.
With 0.10.0, seems prefix is not being respected on base paths using resource
resource
this is not working
class Users < Grape::API prefix "api" resource :users do get do @users = { users: User.all } end
this works, but has to be done for each endpoint base segment =(
class Users < Grape::API resource :users do prefix "api" get do @users = { users: User.all } end
The text was updated successfully, but these errors were encountered:
I believe this bug is also caused by this line f8596829#diff-8e15cddb80f42ca7d43872846d80ecbeR102 , I have wrote a spec for this issue in this PR #868 .
Sorry, something went wrong.
Fixed in 0c0e85f.
No branches or pull requests
This seems to be an issue again.
With 0.10.0, seems prefix is not being respected on base paths using
resource
this is not working
this works, but has to be done for each endpoint base segment =(
The text was updated successfully, but these errors were encountered: