sms-pager/config/routes.rb

37 lines
1.8 KiB
Ruby
Raw Normal View History

2015-09-12 15:37:05 -05:00
Rails.application.routes.draw do
2015-10-20 21:49:59 -05:00
post 'oauth/callback', to: 'oauths#callback'
get 'oauth/callback', to: 'oauths#callback'
get 'oauth/:provider', to: 'oauths#oauth', as: :auth_at_provider
2015-10-07 22:03:31 -05:00
2015-10-20 21:49:59 -05:00
get 'parents', to: 'parents#index', as: :list_parents
get 'parent/new', to: 'parents#new', as: :new_parent
post 'parent/new', to: 'parents#add', as: :add_parent
get 'parent/edit/:id', to: 'parents#edit', as: :edit_parent
get 'parent/:id', to: 'parents#show', as: :parent
patch 'parent/:id', to: 'parents#update', as: :update_parent
2015-09-12 15:37:05 -05:00
2015-10-20 21:49:59 -05:00
post 'parenthood/child/:child', to: 'relationships#add_child', as: :add_parent_to_child
post 'parenthood/:parent/', to: 'relationships#add_child', as: :add_parenthood
2015-10-03 08:04:16 -05:00
delete 'parenthood/:parent/:child', to: 'relationships#del_child', as: :del_parenthood
2015-10-20 21:49:59 -05:00
get 'children', to: 'children#index', as: :list_children
get 'child/new', to: 'children#new', as: :new_child
post 'child/new', to: 'children#add', as: :add_child
get 'child/edit/:id', to: 'children#edit', as: :edit_child
get 'child/:id', to: 'children#show', as: :child
patch 'child/:id', to: 'children#update', as: :update_child
2015-09-12 15:37:05 -05:00
2015-10-20 21:49:59 -05:00
get 'users', to: 'users#index', as: :list_users
get 'user/new', to: 'users#new', as: :new_user
post 'user/new', to: 'users#register', as: :add_user
get 'user/edit/:id', to: 'users#edit', as: :edit_user
get 'user/:id', to: 'users#show', as: :user
patch 'user/edit/:id', to: 'users#update', as: :update_user
2015-09-12 15:37:05 -05:00
2015-09-20 13:26:45 -05:00
get 'pages', to: 'pages#index', as: :list_pages
2015-09-21 20:40:07 -05:00
get 'page/(:id)', to: 'pages#page', as: :page_person
post 'page', to: 'pages#send_page', as: :send_page
2015-09-12 15:37:05 -05:00
root to: 'docs#index'
end