submission.rb 245 B

12345678
  1. class Submission < ApplicationRecord
  2. belongs_to :assignment
  3. validates :title, presence: true, length: { maximum: 255 }
  4. has_many :group_participations, as: :group, dependent: :destroy
  5. has_many :users, through: :group_participations
  6. end