osem-fcy/app/models/vposition.rb
Emanuel Hayford e5587d42a2 Enable Rails/Validation Rubocop cop
Cop checks for the use of old-style attribute validation. Supports autocorrection which was run
to fix the files concerned

Closes #1414
2017-03-28 21:47:31 +02:00

8 lines
170 B
Ruby

class Vposition < ActiveRecord::Base
belongs_to :conference
has_many :vchoices
has_many :vdays, through: :vchoices
validates :title, :vdays, presence: true
end