2014-03-05 07:52:20 -05:00
|
|
|
class BadgeSerializer < ApplicationSerializer
|
2014-07-21 21:11:30 -04: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 16:41:48 -04:00
|
|
|
:system, :long_description, :slug
|
2015-02-27 01:19:18 -05:00
|
|
|
|
2014-03-05 07:52:20 -05:00
|
|
|
has_one :badge_type
|
2014-07-24 04:28:09 -04:00
|
|
|
|
|
|
|
def system
|
|
|
|
object.system?
|
|
|
|
end
|
2015-02-27 01:19:18 -05:00
|
|
|
|
|
|
|
def include_long_description?
|
|
|
|
options[:include_long_description]
|
|
|
|
end
|
2016-03-28 03:38:38 -04:00
|
|
|
|
|
|
|
def name
|
|
|
|
object.display_name
|
|
|
|
end
|
2014-03-05 07:52:20 -05:00
|
|
|
end
|