mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05: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
7 lines
170 B
Ruby
7 lines
170 B
Ruby
class AdminBadgeSerializer < BadgeSerializer
|
|
attributes :query, :trigger, :target_posts, :auto_revoke, :show_posts
|
|
|
|
def include_long_description?
|
|
true
|
|
end
|
|
end
|