Skip to content

Instantly share code, notes, and snippets.

@elricstorm
Created January 17, 2010 19:49
Show Gist options
  • Save elricstorm/279543 to your computer and use it in GitHub Desktop.
Save elricstorm/279543 to your computer and use it in GitHub Desktop.
ActionController::Routing::Routes.draw do |map|
# | ======== USER and SESSIONS BELOW ======================= |
map.resources :users, :path_prefix => '/administration',
:member => {
:suspend => :put,
:unsuspend => :put,
:force_activate => :put,
:purge => :delete
}
map.logout '/logout', :controller => 'sessions', :action => 'destroy'
map.login '/login', :controller => 'sessions', :action => 'new'
map.register '/register', :controller => 'users', :action => 'create'
map.signup '/signup', :controller => 'users', :action => 'new'
map.activate '/activate/:activation_code', :controller => 'users', :action => 'activate'
map.forgot_password '/forgot_password', :controller => 'users', :action => 'forgot_password'
map.reset_password '/reset_password/:id', :controller => 'users', :action => 'reset_password'
map.resource :session
# | ======== Contact Form and Messages ==================== |
map.resources :messages
map.connect ':controller/:action/:id'
map.connect ':controller/:action/:id.:format'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment