mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
71f211f0b3
user card
10 lines
285 B
Ruby
10 lines
285 B
Ruby
class BadgeSerializer < ApplicationSerializer
|
|
attributes :id, :name, :description, :grant_count, :allow_title,
|
|
:multiple_grant, :icon, :image, :listable, :enabled, :badge_grouping_id,
|
|
:system
|
|
has_one :badge_type
|
|
|
|
def system
|
|
object.system?
|
|
end
|
|
end
|