提交 f665e5b8 编写于 作者: J Jan Provaznik 提交者: Sean McGivern

Fix serialization of LegacyDiffNote

上级 11deffa3
---
title: Fix serialization of LegacyDiffNote
merge_request:
author:
type: fixed
......@@ -701,7 +701,7 @@ module API
expose :system?, as: :system
expose :noteable_id, :noteable_type
expose :position, if: ->(note, options) { note.diff_note? } do |note|
expose :position, if: ->(note, options) { note.is_a?(DiffNote) } do |note|
note.position.to_h
end
......
......@@ -39,6 +39,7 @@ FactoryBot.define do
factory :legacy_diff_note_on_merge_request, traits: [:on_merge_request, :legacy_diff_note], class: LegacyDiffNote do
association :project, :repository
position ''
end
factory :diff_note_on_merge_request, traits: [:on_merge_request], class: DiffNote do
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册