2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-03-03 23:54:20 +08:00
discourse/app/models/user_badges.rb
2023-01-09 14:14:59 +00:00

14 lines
325 B
Ruby

# frozen_string_literal: true
# view model for user badges
class UserBadges
alias read_attribute_for_serialization send
attr_accessor :user_badges, :username, :grant_count
def initialize(opts = {})
@user_badges = opts[:user_badges]
@username = opts[:username]
@grant_count = opts[:grant_count]
end
end