Skip to content
Snippets Groups Projects

Trigger note-webhook on comment edit

Merged Lucas Zampieri requested to merge lzampier/gitlab:webhooks-on-comment-edit into master
1 unresolved thread
Files
2
@@ -100,7 +100,7 @@ def track_note_edit_usage_for_issues(note)
end
def execute_note_webhook(note)
return unless note.project
return unless note.project && note.previous_changes.include?('note')
note_data = Gitlab::DataBuilder::Note.build(note, note.author)
is_confidential = note.confidential?(include_noteable: true)
Loading