Okechi Onyeje 384033bfe6 Added Index Route to Show Result Oysters
- set up index route to show osyters of a specific result
- set up index view, controller method, and route
- commented out debug console
2017-01-20 11:47:52 -05:00

17 lines
439 B
Ruby

Rails.application.routes.draw do
get 'oysters/show'
get 'oysters/index'
root "dashboard#index"
resources :runs
resources :companies
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