Class: Admin::CourseCategoriesController
- Inherits:
-
AdminController
- Object
- AdminController
- Admin::CourseCategoriesController
- Includes:
- EntityPriority, ToggleableEntity
- Defined in:
- app/controllers/admin/course_categories_controller.rb
Instance Method Summary collapse
-
#index ⇒ Object
get /admin/course_categories.
-
#show ⇒ Object
get /admin/course_categories/:id.
Instance Method Details
#index ⇒ Object
get /admin/course_categories
8 9 |
# File 'app/controllers/admin/course_categories_controller.rb', line 8 def index end |
#show ⇒ Object
get /admin/course_categories/:id
12 13 14 |
# File 'app/controllers/admin/course_categories_controller.rb', line 12 def show @collection = @entity.courses.page_for_administration(current_page) end |