Skip to content

Instantly share code, notes, and snippets.

@maxehmookau
Last active August 29, 2015 14:08
Show Gist options
  • Save maxehmookau/a02fdd2c277fcbb562e4 to your computer and use it in GitHub Desktop.
Save maxehmookau/a02fdd2c277fcbb562e4 to your computer and use it in GitHub Desktop.
DRY up routes using methods in routes.rb
Rails.application.routes.draw do
api_read_actions = [:index, :show]
api_resources = [:videos, :people, :collections]
api_resources.each do |api_resource|
resources api_resource, only: api_read_actions
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment