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: 06d760b6a894907a53769bfd5c9ba3bb5a468968 (plain)
1
2
3
4
5
6
class IssueAssignee < ActiveRecord::Base
  extend Gitlab::CurrentSettings

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