Welcome to mirror list, hosted at ThFree Co, Russian Federation.

term.rb « application_setting « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: acdd7e4155c40e40de01379c691eb0966c171e8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

class ApplicationSetting
  class Term < ApplicationRecord
    include CacheMarkdownField
    include NullifyIfBlank

    has_many :term_agreements

    cache_markdown_field :terms

    nullify_if_blank :terms

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

    def accepted_by_user?(user)
      return true if user.project_bot?

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