Use the json boolean trick

This commit is contained in:
Kane York 2015-09-11 09:14:45 -07:00
parent a9d10f454b
commit b706c59ab9
1 changed files with 5 additions and 1 deletions

View File

@ -38,11 +38,15 @@ class CategorySerializer < BasicCategorySerializer
true
end
def is_special
def include_is_special?
[SiteSetting.lounge_category_id, SiteSetting.meta_category_id, SiteSetting.staff_category_id, SiteSetting.uncategorized_category_id]
.include? object.id
end
def is_special
true
end
def include_can_delete?
scope && scope.can_delete?(object)
end