This repository has been archived on 2023-03-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
osr-discourse-src/app/models/user_badges.rb
T
2017-07-28 10:20:09 +09:00

13 lines
296 B
Ruby

# 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