Skip to content

Instantly share code, notes, and snippets.

@andrewculver
Last active May 17, 2018 13:17
Show Gist options
  • Save andrewculver/d251bfc93c06934e11f9db74380b370f to your computer and use it in GitHub Desktop.
Save andrewculver/d251bfc93c06934e11f9db74380b370f to your computer and use it in GitHub Desktop.
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
@andrewculver
Copy link
Author

(Never executed. Probably has errors.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment