Class: Trophy
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- Trophy
- Defined in:
- app/models/trophy.rb
Instance Method Summary collapse
Instance Method Details
#count_within_limit ⇒ Object
5 6 7 8 |
# File 'app/models/trophy.rb', line 5 def count_within_limit return if Trophy.where(user_id: user_id).count < 5 errors.add(:base, "Exceeded trophy limit") end |