Last active
May 17, 2018 13:17
-
-
Save andrewculver/d251bfc93c06934e11f9db74380b370f to your computer and use it in GitHub Desktop.
Possible routes for https://twitter.com/marckohlbrugge/status/997084251202830337
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resources :questions, followable_type: 'Question' do | |
collection do | |
get 'tagged/:tag', action: :index | |
[:unanswered, :popular, :following, :for_me].each do |filter| | |
get filter | |
get filter + "/tagged/:tag", to: "questions#" + filter | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
(Never executed. Probably has errors.)