Rails.application.routes.draw do get 'theses/index' get 'theses/show' get 'theses/new' get 'theses/edit' get 'theses/create' get 'theses/update' get 'theses/destroy' get 'projects/index' get 'projects/show' get 'projects/new' get 'projects/edit' get 'projects/create' get 'projects/update' get 'projects/destroy' get 'people/index' get 'people/show' get 'people/new' get 'people/edit' get 'people/create' get 'people/update' get 'people/destroy' get 'login/index' get 'login/show' get 'login/new' get 'login/edit' get 'login/create' get 'login/update' get 'login/destroy' get 'courses/index' get 'courses/show' get 'courses/new' get 'courses/edit' get 'courses/create' get 'courses/update' get 'courses/destroy' get 'login/index' # For details on the DSL available within this file, see https://guides.rubyonrails.org/routing.html root 'login#index' end