mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-20 14:11:11 +00:00
7 lines
165 B
Ruby
7 lines
165 B
Ruby
class IssueAssignee < ActiveRecord::Base
|
|
extend Gitlab::CurrentSettings
|
|
|
|
belongs_to :issue
|
|
belongs_to :assignee, class_name: "User", foreign_key: :user_id
|
|
end
|