Created
October 25, 2011 04:47
-
-
Save hoverlover/1311330 to your computer and use it in GitHub Desktop.
Map a scoped resource to a controller with an unrelated namespace
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
Sample::Application.routes.draw do | |
# Route /a/b -> Foo::BarsController. This is useful | |
# when you need to conform to a certain url structure | |
# while using a controller that doesn't match that structure, | |
# eg. a controller supplied by a Rails engine. | |
scope '/a' do | |
resources :b, controller: 'bars', module: 'foo' | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment