debian-mirror-gitlab/app/services/resource_events/merge_into_notes_service.rb

33 lines
985 B
Ruby
Raw Normal View History

2018-11-20 20:47:30 +05:30
# frozen_string_literal: true
2020-03-13 15:44:24 +05:30
# We store events about issuable label changes and weight changes in separate tables (not as
# other system notes), but we still want to display notes about label and weight changes
# as classic system notes in UI. This service merges synthetic label and weight notes
# with classic notes and sorts them by creation time.
2018-11-20 20:47:30 +05:30
module ResourceEvents
class MergeIntoNotesService
include Gitlab::Utils::StrongMemoize
attr_reader :resource, :current_user, :params
def initialize(resource, current_user, params = {})
@resource = resource
@current_user = current_user
@params = params
end
def execute(notes = [])
2020-03-13 15:44:24 +05:30
(notes + synthetic_notes).sort_by { |n| n.created_at }
2018-11-20 20:47:30 +05:30
end
private
2020-03-13 15:44:24 +05:30
def synthetic_notes
SyntheticLabelNotesBuilderService.new(resource, current_user, params).execute
2018-11-20 20:47:30 +05:30
end
end
end
2020-03-13 15:44:24 +05:30
ResourceEvents::MergeIntoNotesService.prepend_if_ee('EE::ResourceEvents::MergeIntoNotesService')