sms-pager/config/routes.rb

16 lines
460 B
Ruby
Raw Normal View History

2015-09-12 15:37:05 -05:00
Rails.application.routes.draw do
2015-09-20 13:26:45 -05:00
get 'parents', to: 'parents#index', as: :list_parents
2015-09-12 15:37:05 -05:00
2015-09-20 13:26:45 -05:00
get 'children', to: 'children#index', as: :list_children
get 'children/lookup', to: 'children#lookup', as: :lookup_child
2015-09-12 15:37:05 -05:00
2015-09-20 13:26:45 -05:00
get 'staff', to: 'staff#index', as: :list_staff
2015-09-12 15:37:05 -05:00
2015-09-20 13:26:45 -05:00
get 'users', to: 'users#index', as: :list_users
2015-09-12 15:37:05 -05:00
2015-09-20 13:26:45 -05:00
get 'pages', to: 'pages#index', as: :list_pages
get 'page/:id', to: 'pages#page', as: :page_person
2015-09-12 15:37:05 -05:00
root to: 'docs#index'
end