discourse/app/serializers/basic_user_badge_serializer.rb
riking 99c11e2184 Sort the badges on the user profile page
Also clean up UserBadgesController so it isn't doing two things in one
method
2014-08-25 12:40:51 -07:00

14 lines
265 B
Ruby

class BasicUserBadgeSerializer < ApplicationSerializer
attributes :id, :granted_at, :count, :grouping_position
has_one :badge
def include_count?
object.respond_to? :count
end
def grouping_position
object.badge.badge_grouping.position
end
end