Skip to content

Instantly share code, notes, and snippets.

@thoughtbot
Created August 4, 2009 22:28
Show Gist options
  • Save thoughtbot/162327 to your computer and use it in GitHub Desktop.
Save thoughtbot/162327 to your computer and use it in GitHub Desktop.
# in the engine
ActionController::Routing::Routes.draw do |map|
map.resources :users, :controller => 'clearance/users' do |users|
users.resource :password,
:controller => 'clearance/passwords',
:only => [:create, :edit, :update]
end
# in the app
ActionController::Routing::Routes.draw do |map|
map.resources :users
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment