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: d8fbd49d313937407213298f6cf60cee77d41300 (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: project_ids }) }
  scope :on_issues, ->(issue_ids) { where(issue_id: issue_ids) }
  scope :for_assignee, ->(user) { where(assignee: user) }
end

IssueAssignee.prepend_mod_with('IssueAssignee')