Class: Admin::BrowsersController
- Inherits:
-
AdminController
- Object
- AdminController
- Admin::BrowsersController
- Includes:
- LockableEntity, ToggleableEntity
- Defined in:
- app/controllers/admin/browsers_controller.rb
Instance Method Summary collapse
-
#index ⇒ Object
get /admin/browsers.
-
#show ⇒ Object
get /admin/browsers/:id.
Methods included from ToggleableEntity
Methods included from LockableEntity
Instance Method Details
#index ⇒ Object
get /admin/browsers
9 10 11 |
# File 'app/controllers/admin/browsers_controller.rb', line 9 def index @collection = Browser.page_for_administration(current_page) end |
#show ⇒ Object
get /admin/browsers/:id
14 15 16 |
# File 'app/controllers/admin/browsers_controller.rb', line 14 def show @collection = @entity.agents.page_for_administration(current_page) end |