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
4 5 6 7 |
# File 'app/models/trophy.rb', line 4 def count_within_limit return if Trophy.where(user_id: user_id).count < 5 errors.add(:base, "Exceeded trophy limit") end |