summaryrefslogtreecommitdiff
path: root/app/models/application_setting/term.rb
blob: 498701ba22b6d0e3eca312e9e1ce352daa6df254 (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 < ActiveRecord::Base
    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