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: 400c0256945a99827aa11b93a9b6f6a47783db05 (plain)
1
2
3
4
5
6
# frozen_string_literal: true

class IssueAssignee < ActiveRecord::Base
  belongs_to :issue
  belongs_to :assignee, class_name: "User", foreign_key: :user_id
end