mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 00:51:03 +08:00
fe51f84aa7
FIX: fallback to description if badge long description is missing Also moves all badge localization into server.en, this slims the client down serializers pass down localized names/descriptions/long descriptions
20 lines
432 B
Ruby
20 lines
432 B
Ruby
class BadgeSerializer < ApplicationSerializer
|
|
attributes :id, :name, :description, :grant_count, :allow_title,
|
|
:multiple_grant, :icon, :image, :listable, :enabled, :badge_grouping_id,
|
|
:system, :long_description, :slug
|
|
|
|
has_one :badge_type
|
|
|
|
def system
|
|
object.system?
|
|
end
|
|
|
|
def include_long_description?
|
|
options[:include_long_description]
|
|
end
|
|
|
|
def name
|
|
object.display_name
|
|
end
|
|
end
|