summaryrefslogtreecommitdiff
path: root/app/models/application_setting/term.rb
blob: 723540c9b9185834f8c9a01f6e310566c36d2f03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

class ApplicationSetting
  class Term < ApplicationRecord
    include CacheMarkdownField
    has_many :term_agreements

    validates :terms, presence: true

    cache_markdown_field :terms

    def self.latest
      order(:id).last
    end

    def accepted_by_user?(user)
      user.accepted_term_id == id ||
        term_agreements.accepted.where(user: user).exists?
    end
  end
end