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

calloutable.rb « users « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 483d0d785a5de5a83ab90f4b31f562c95be9888a (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

module Users
  module Calloutable
    extend ActiveSupport::Concern

    included do
      belongs_to :user

      validates :user, presence: true
    end

    def dismissed_after?(dismissed_after)
      dismissed_at > dismissed_after
    end

    def dismissed_before?(dismissed_before)
      dismissed_at < dismissed_before
    end
  end
end