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

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

    end
  end
end