Guest User

Untitled

a guest
Oct 19th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.59 KB | None | 0 0
  1. documents GET /teacher/documents(.:format) {:action=>"index", :controller=>"documents"}
  2. POST /teacher/documents(.:format) {:action=>"create", :controller=>"documents"}
  3. new_document GET /teacher/documents/new(.:format) {:action=>"new", :controller=>"documents"}
  4. edit_document GET /teacher/documents/:id/edit(.:format) {:action=>"edit", :controller=>"documents"}
  5. document GET /teacher/documents/:id(.:format) {:action=>"show", :controller=>"documents"}
  6. PUT /teacher/documents/:id(.:format) {:action=>"update", :controller=>"documents"}
  7. DELETE /teacher/documents/:id(.:format) {:action=>"destroy", :controller=>"documents"}
  8. audio_index GET /teacher/audio(.:format) {:action=>"index", :controller=>"audio"}
  9. POST /teacher/audio(.:format) {:action=>"create", :controller=>"audio"}
  10. new_audio GET /teacher/audio/new(.:format) {:action=>"new", :controller=>"audio"}
  11. edit_audio GET /teacher/audio/:id/edit(.:format) {:action=>"edit", :controller=>"audio"}
  12. audio GET /teacher/audio/:id(.:format) {:action=>"show", :controller=>"audio"}
  13. PUT /teacher/audio/:id(.:format) {:action=>"update", :controller=>"audio"}
  14. DELETE /teacher/audio/:id(.:format) {:action=>"destroy", :controller=>"audio"}
  15. images GET /teacher/images(.:format) {:action=>"index", :controller=>"images"}
  16. POST /teacher/images(.:format) {:action=>"create", :controller=>"images"}
  17. new_image GET /teacher/images/new(.:format) {:action=>"new", :controller=>"images"}
  18. edit_image GET /teacher/images/:id/edit(.:format) {:action=>"edit", :controller=>"images"}
  19. image GET /teacher/images/:id(.:format) {:action=>"show", :controller=>"images"}
  20. PUT /teacher/images/:id(.:format) {:action=>"update", :controller=>"images"}
  21. DELETE /teacher/images/:id(.:format) {:action=>"destroy", :controller=>"images"}
  22. videos GET /teacher/videos(.:format) {:action=>"index", :controller=>"videos"}
  23. POST /teacher/videos(.:format) {:action=>"create", :controller=>"videos"}
  24. new_video GET /teacher/videos/new(.:format) {:action=>"new", :controller=>"videos"}
  25. edit_video GET /teacher/videos/:id/edit(.:format) {:action=>"edit", :controller=>"videos"}
  26. video GET /teacher/videos/:id(.:format) {:action=>"show", :controller=>"videos"}
  27. PUT /teacher/videos/:id(.:format) {:action=>"update", :controller=>"videos"}
  28. DELETE /teacher/videos/:id(.:format) {:action=>"destroy", :controller=>"videos"}
  29. courses GET /teacher/courses(.:format) {:action=>"index", :controller=>"courses"}
  30. POST /teacher/courses(.:format) {:action=>"create", :controller=>"courses"}
  31. new_course GET /teacher/courses/new(.:format) {:action=>"new", :controller=>"courses"}
  32. edit_course GET /teacher/courses/:id/edit(.:format) {:action=>"edit", :controller=>"courses"}
  33. course GET /teacher/courses/:id(.:format) {:action=>"show", :controller=>"courses"}
  34. PUT /teacher/courses/:id(.:format) {:action=>"update", :controller=>"courses"}
  35. DELETE /teacher/courses/:id(.:format) {:action=>"destroy", :controller=>"courses"}
  36. quizzes GET /teacher/quizzes(.:format) {:action=>"index", :controller=>"quizzes"}
  37. POST /teacher/quizzes(.:format) {:action=>"create", :controller=>"quizzes"}
  38. new_quiz GET /teacher/quizzes/new(.:format) {:action=>"new", :controller=>"quizzes"}
  39. edit_quiz GET /teacher/quizzes/:id/edit(.:format) {:action=>"edit", :controller=>"quizzes"}
  40. quiz GET /teacher/quizzes/:id(.:format) {:action=>"show", :controller=>"quizzes"}
  41. PUT /teacher/quizzes/:id(.:format) {:action=>"update", :controller=>"quizzes"}
  42. DELETE /teacher/quizzes/:id(.:format) {:action=>"destroy", :controller=>"quizzes"}
  43. teacher_dashboard /teacher/Dashboard(.:format) {:action=>"dashboard", :controller=>"teacher/home"}
  44. student_quizzes GET /student/quizzes(.:format) {:action=>"index", :controller=>"student/quizzes"}
  45. POST /student/quizzes(.:format) {:action=>"create", :controller=>"student/quizzes"}
  46. new_student_quiz GET /student/quizzes/new(.:format) {:action=>"new", :controller=>"student/quizzes"}
  47. edit_student_quiz GET /student/quizzes/:id/edit(.:format) {:action=>"edit", :controller=>"student/quizzes"}
  48. student_quiz GET /student/quizzes/:id(.:format) {:action=>"show", :controller=>"student/quizzes"}
  49. PUT /student/quizzes/:id(.:format) {:action=>"update", :controller=>"student/quizzes"}
  50. DELETE /student/quizzes/:id(.:format) {:action=>"destroy", :controller=>"student/quizzes"}
  51. student /student/quizzes/new/:id(.:format) {:controller=>"student/quizzes", :action=>"new"}
  52. student_dashboard /student/Dashboard(.:format) {:action=>"dashboard", :controller=>"student/home"}
  53. root /(.:format) {:controller=>"home", :action=>"index"}
Add Comment
Please, Sign In to add comment