Guest User

Untitled

a guest
Oct 19th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. BoTan::Application.routes.draw do
  2.  
  3. scope "teacher" do
  4. resources :documents, :audio, :images, :videos, :courses, :quizzes
  5. match 'Dashboard' => 'teacher/home#dashboard', :as => :teacher_dashboard
  6. end
  7.  
  8. namespace :student do
  9. resources :quizzes
  10. match 'quizzes/new/:id' => 'quizzes#new'
  11. match 'Dashboard' => 'home#dashboard', :as => :dashboard
  12. # root :to => 'home#dashboard'
  13. end
  14.  
  15. # match 'Dashboard' => 'home#dashboard', :as => "dashboard"
  16. root :to => "home#index"
  17.  
  18. end
Add Comment
Please, Sign In to add comment