summaryrefslogtreecommitdiff
path: root/app/models/issue_assignee.rb
blob: d62f0eb170c15091445e3e2c435b370eb2b49438 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

class IssueAssignee < ApplicationRecord
  extend SuppressCompositePrimaryKeyWarning

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

  validates :assignee, uniqueness: { scope: :issue_id }

  scope :in_projects, ->(project_ids) { joins(:issue).where("issues.project_id in (?)", project_ids) }
  scope :on_issues, ->(issue_ids) { where(issue_id: issue_ids) }
  scope :for_assignee, ->(user) { where(assignee: user) }
end

IssueAssignee.prepend_if_ee('EE::IssueAssignee')