You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
229 B

10 months ago
2 months ago
10 months ago
  1. # Score defines a grade per software game
  2. class Score < ApplicationRecord
  3. validates :name, presence: true
  4. validates :grade, presence: true
  5. def self.ransackable_attributes(_ = nil) = authorizable_ransackable_attributes
  6. end