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
I have an old endpoint I want to quietly combine with a new one. Here's what I tried to do:
Old router:
router.draw( Routes::Badges, base: "/badges", actions: [ ci_status: { method: :get, url: "/ci_status" }, compatibility_score: { method: :get, url: "/compatibility_score" }, ], )
Attempted new router:
router.draw( Routes::Badges, base: "/badges", actions: [ compatibility_score: [ { method: :get, url: "/compatibility_score" }, { method: :get, url: "/ci_status" }, ], ], )
It would be rad if that worked. Any reason not to support it / preferred alternative?
The text was updated successfully, but these errors were encountered:
Hi @greysteil! 👋❤️ Sorry for the delay, I've been on holiday.
That seems reasonable to me. Looks like it shouldn't be too hard to implement either.
Sorry, something went wrong.
No branches or pull requests
I have an old endpoint I want to quietly combine with a new one. Here's what I tried to do:
Old router:
Attempted new router:
It would be rad if that worked. Any reason not to support it / preferred alternative?
The text was updated successfully, but these errors were encountered: