mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FEATURE: you can not drill down and see why you have badges
Clicking on badges filters down the list to a particular user.
This commit is contained in:
12
app/models/user_badges.rb
Normal file
12
app/models/user_badges.rb
Normal file
@@ -0,0 +1,12 @@
|
||||
# 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
|
||||
Reference in New Issue
Block a user