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

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

      end
    end
  end
end