2014-03-05 18:22:20 +05:30
|
|
|
class BadgeSerializer < ApplicationSerializer
|
2014-07-22 11:11:30 +10:00
|
|
|
attributes :id, :name, :description, :grant_count, :allow_title,
|
2014-10-20 13:15:58 -04:00
|
|
|
:multiple_grant, :icon, :image, :listable, :enabled, :badge_grouping_id,
|
2015-09-19 22:41:48 +02:00
|
|
|
:system, :long_description, :slug
|
2015-02-27 17:19:18 +11:00
|
|
|
|
2014-03-05 18:22:20 +05:30
|
|
|
has_one :badge_type
|
2014-07-24 18:28:09 +10:00
|
|
|
|
|
|
|
def system
|
|
|
|
object.system?
|
|
|
|
end
|
2015-02-27 17:19:18 +11:00
|
|
|
|
|
|
|
def include_long_description?
|
|
|
|
options[:include_long_description]
|
|
|
|
end
|
2016-03-28 18:38:38 +11:00
|
|
|
|
|
|
|
def name
|
|
|
|
object.display_name
|
|
|
|
end
|
2014-03-05 18:22:20 +05:30
|
|
|
end
|