tiss2go/config/routes.rb
2020-04-21 16:07:54 +02:00

14 lines
413 B
Ruby

Rails.application.routes.draw do
devise_for :users, path_names: {sign_in: 'log_in', sign_out: 'log out'}
get 'login/index'
get 'tiss_crawler/people_search'
get 'tiss_crawler/people_show_basic'
get 'tiss_crawler/people_show_detail'
post 'tiss_crawler/people_show_detail'
# For details on the DSL available within this file, see https://guides.rubyonrails.org/routing.html
root 'login#index'
end