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

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

      end
    end
  end
end