2019-05-03 08:17:27 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
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,
|
2018-01-21 22:10:53 -05:00
|
|
|
:system, :long_description, :slug, :has_badge, :manually_grantable?
|
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
|
|
|
|
2017-10-30 16:21:05 +11:00
|
|
|
def include_has_badge?
|
|
|
|
object.has_badge
|
|
|
|
end
|
|
|
|
|
|
|
|
def has_badge
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
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
|