22 lines
627 B
Ruby
22 lines
627 B
Ruby
Rails.application.routes.draw do
|
|
devise_for :users, path_names: {sign_in: 'log_in', sign_out: 'log out'}
|
|
get 'theses/index'
|
|
get 'theses/show_basic'
|
|
get 'theses/show_detailed'
|
|
get 'projects/index'
|
|
get 'projects/show_basic'
|
|
get 'projects/show_detailed'
|
|
get 'people/index'
|
|
get 'people/show_basic'
|
|
get 'people/show_detailed'
|
|
get 'courses/index'
|
|
get 'courses/show_basic'
|
|
get 'courses/show_detailed'
|
|
get 'login/index'
|
|
|
|
get 'tisscrawler/search', :to => 'tiss_crawler#search'
|
|
|
|
# For details on the DSL available within this file, see https://guides.rubyonrails.org/routing.html
|
|
root 'login#index'
|
|
end
|