Created
January 17, 2010 19:49
-
-
Save elricstorm/279543 to your computer and use it in GitHub Desktop.
This file contains 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
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