1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# This is an auto-generated file: don't edit!
# You can add your own routes in the config/routes.rb file
# which will override the routes in this file.
Council::Application.routes.draw do
# Lifecycle routes for controller "users"
post 'users/signup(.:format)' => 'users#do_signup', :as => 'do_user_signup'
get 'users/signup(.:format)' => 'users#signup', :as => 'user_signup'
put 'users/:id/reset_password(.:format)' => 'users#do_reset_password', :as => 'do_user_reset_password'
get 'users/:id/reset_password(.:format)' => 'users#reset_password', :as => 'user_reset_password'
# Resource routes for controller "users"
get 'users/:id/edit(.:format)' => 'users#edit', :as => 'edit_user'
get 'users/:id(.:format)' => 'users#show', :as => 'user', :constraints => { :id => %r([^/.?]+) }
post 'users(.:format)' => 'users#create', :as => 'create_user'
put 'users/:id(.:format)' => 'users#update', :as => 'update_user', :constraints => { :id => %r([^/.?]+) }
delete 'users/:id(.:format)' => 'users#destroy', :as => 'destroy_user', :constraints => { :id => %r([^/.?]+) }
# Show action routes for controller "users"
get 'users/:id/account(.:format)' => 'users#account', :as => 'user_account'
# User routes for controller "users"
match 'login(.:format)' => 'users#login', :as => 'user_login'
get 'logout(.:format)' => 'users#logout', :as => 'user_logout'
match 'forgot_password(.:format)' => 'users#forgot_password', :as => 'user_forgot_password'
end
|