File: issue_assignee.rb

package info (click to toggle)
gitlab 17.6.5-19
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 629,368 kB
  • sloc: ruby: 1,915,304; javascript: 557,307; sql: 60,639; xml: 6,509; sh: 4,567; makefile: 1,239; python: 406
file content (19 lines) | stat: -rw-r--r-- 647 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

class IssueAssignee < ApplicationRecord
  include EachBatch

  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 :on_users, ->(user_ids) { where(user_id: user_ids) }
  scope :for_assignee, ->(user) { where(assignee: user) }
end

IssueAssignee.prepend_mod_with('IssueAssignee')