blob: 12f22ceb9f8132199c4a5d72dbdcc382b7213d7d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
module Refinery
module Admin
module Blog
class CategoriesController < ::Refinery::AdminController
crudify :'refinery/blog_category',
:title_attribute => :title,
:order => 'title ASC'
end
end
end
end
|