Class: Cms::BlogsController

Inherits:
ContentBlockController
  • Object
show all
Defined in:
app/controllers/cms/blogs_controller.rb

Instance Method Summary collapse

Instance Method Details

#indexObject



4
5
6
7
8
9
10
# File 'app/controllers/cms/blogs_controller.rb', line 4

def index
  if current_user.able_to?(:administrate)
    super
  else
    render :action => "admin_only"
  end
end