debian-mirror-gitlab/app/models/term_agreement.rb
2019-07-07 11:18:12 +05:30

11 lines
244 B
Ruby

# frozen_string_literal: true
class TermAgreement < ApplicationRecord
belongs_to :term, class_name: 'ApplicationSetting::Term'
belongs_to :user
scope :accepted, -> { where(accepted: true) }
validates :user, :term, presence: true
end