Skip to content

Instantly share code, notes, and snippets.

@mashiro
Created August 7, 2014 14:08
Show Gist options
  • Save mashiro/19f24ddd038416b2e722 to your computer and use it in GitHub Desktop.
Save mashiro/19f24ddd038416b2e722 to your computer and use it in GitHub Desktop.
def nested_resources(*args, &block)
scope only: [:index, :create] do
resources *args, &block
end
end
def shallow_resources(*args, &block)
scope only: [:show, :update, :destroy] do
resources *args, &block
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment