openSUSE/osem

View on GitHub
app/models/vday.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class Vday < ApplicationRecord
  belongs_to :conference

  has_many :vchoices
  has_many :vpositions, through: :vchoices, dependent: :destroy
end