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

issue_assignee.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b94b55bb1d1ecec38d8fe5ecfce62763bef4ba05 (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
26
27
28
29
class IssueAssignee < ActiveRecord::Base
  extend Gitlab::CurrentSettings

  belongs_to :issue
  belongs_to :assignee, class_name: "User", foreign_key: :user_id

  after_create :update_assignee_cache_counts
  after_destroy :update_assignee_cache_counts

  # EE-specific
  after_create :update_elasticsearch_index
  after_destroy :update_elasticsearch_index
  # EE-specific

  def update_assignee_cache_counts
    assignee&.update_cache_counts
  end

  def update_elasticsearch_index
    if current_application_settings.elasticsearch_indexing?
      ElasticIndexerWorker.perform_async(
        :update,
        'Issue',
        issue.id,
        changed_fields: ['assignee_ids']
      )
    end
  end
end