Class: Admin::PostTagsController
- Inherits:
-
AdminController
- Object
- AdminController
- Admin::PostTagsController
- Defined in:
- app/controllers/admin/post_tags_controller.rb
Instance Method Summary collapse
-
#index ⇒ Object
get /admin/post_tags.
-
#posts ⇒ Object
get /admin/post_tags/:id/posts.
-
#show ⇒ Object
get /admin/post_tags/:id.
Instance Method Details
#index ⇒ Object
get /admin/post_tags
5 6 7 |
# File 'app/controllers/admin/post_tags_controller.rb', line 5 def index @collection = PostTag.page_for_administration(current_page) end |
#posts ⇒ Object
get /admin/post_tags/:id/posts
14 15 16 |
# File 'app/controllers/admin/post_tags_controller.rb', line 14 def posts @collection = @entity.posts.page_for_administration(current_page) end |
#show ⇒ Object
get /admin/post_tags/:id
10 11 |
# File 'app/controllers/admin/post_tags_controller.rb', line 10 def show end |