Commit f665e5b8 authored by Jan Provaznik's avatar Jan Provaznik Committed by Sean McGivern

Fix serialization of LegacyDiffNote

parent 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%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment