Class: Admin::PostTagsController

Inherits:
AdminController
  • Object
show all
Defined in:
app/controllers/admin/post_tags_controller.rb

Instance Method Summary collapse

Instance Method Details

#indexObject

get /admin/post_tags



5
6
7
# File 'app/controllers/admin/post_tags_controller.rb', line 5

def index
  @collection = .page_for_administration(current_page)
end

#postsObject

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

#showObject

get /admin/post_tags/:id



10
11
# File 'app/controllers/admin/post_tags_controller.rb', line 10

def show
end