Class: Trophy

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
app/models/trophy.rb

Instance Method Summary collapse

Instance Method Details

#count_within_limitObject



4
5
6
7
8
# File 'app/models/trophy.rb', line 4

def count_within_limit
  if Trophy.where(user_id:self.user_id).count >= 5
    errors.add(:base, "Exceeded trophy limit")
  end
end