Okechi Onyeje 9d17166e8f Dashboard integrated but with errors
- authentication routes are glitchy
- custom devise views are not being displayed properly
- routing issues and custom fields for devise routes and models
2017-01-19 15:42:49 -05:00

13 lines
372 B
Ruby

Rails.application.routes.draw do
root "dashboard#index"
resources :runs
devise_for :users, :controllers => {:registrations => 'registrations'}
devise_scope :users do
get 'signin' => 'registrations#new'
post 'signin' => 'registrations#create'
end
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
end