aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/refinery/blog/admin/categories_controller.rb
blob: cbde1cc77b60993337e370f79dc7a241c08d3e73 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Refinery
  module Blog
    module Admin
      class CategoriesController < ::Refinery::AdminController

        crudify :'refinery/blog/category',
                :title_attribute => :title,
                :order => 'title ASC'

      end
    end
  end
end