sms-pager/config/routes.rb

14 lines
351 B
Ruby
Raw Normal View History

2015-09-12 15:37:05 -05:00
Rails.application.routes.draw do
get 'parents', to: 'parents#index', as: :list_parents
get 'children', to: 'children#index', as: :list_children
get 'staff', to: 'staff#index', as: :list_staff
get 'users', to: 'users#index', as: :list_users
get 'pages', to: 'pages#index', as: :list_pages
root to: 'docs#index'
end