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:
Sam
2016-01-18 17:59:07 +11:00
parent a055c37939
commit ca3e2b4da3
17 changed files with 188 additions and 27 deletions

12
app/models/user_badges.rb Normal file
View 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