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-07-24 04:28:09 -04:00
|
|
|
:multiple_grant, :icon, :listable, :enabled, :badge_grouping_id,
|
|
|
|
:system
|
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
|
2014-03-05 07:52:20 -05:00
|
|
|
end
|