discourse/app/serializers/badge_serializer.rb
Sam Saffron 30990006a9 DEV: enable frozen string literal on all files
This reduces chances of errors where consumers of strings mutate inputs
and reduces memory usage of the app.

Test suite passes now, but there may be some stuff left, so we will run
a few sites on a branch prior to merging
2019-05-13 09:31:32 +08:00

30 lines
582 B
Ruby

# frozen_string_literal: true
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_badge, :manually_grantable?
has_one :badge_type
def include_has_badge?
object.has_badge
end
def has_badge
true
end
def system
object.system?
end
def include_long_description?
options[:include_long_description]
end
def name
object.display_name
end
end