aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/refinery/admin/blog/categories_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/refinery/admin/blog/categories_controller.rb')
-rw-r--r--app/controllers/refinery/admin/blog/categories_controller.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/app/controllers/refinery/admin/blog/categories_controller.rb b/app/controllers/refinery/admin/blog/categories_controller.rb
new file mode 100644
index 0000000..7196e8f
--- /dev/null
+++ b/app/controllers/refinery/admin/blog/categories_controller.rb
@@ -0,0 +1,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