Add Create Topic button to /categories page

This commit is contained in:
Neil Lalonde
2013-05-14 12:45:54 -04:00
parent df2a718446
commit 101ba5d8fe
3 changed files with 7 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
class CategoryListSerializer < ApplicationSerializer
attributes :can_create_category
attributes :can_create_category, :can_create_topic
has_many :categories, serializer: CategoryDetailedSerializer, embed: :objects
@@ -8,4 +8,8 @@ class CategoryListSerializer < ApplicationSerializer
scope.can_create?(Category)
end
def can_create_topic
scope.can_create?(Topic)
end
end