openSUSE/osem

View on GitHub
app/models/vposition.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class Vposition < ApplicationRecord
  belongs_to :conference

  has_many :vchoices
  has_many :vdays, through: :vchoices

  validates :title, :vdays, presence: true
end