summaryrefslogtreecommitdiff
path: root/lib/gitlab/import_export/after_export_strategies/download_notification_strategy.rb
blob: 39a6090ad8763ba42867780bf455f81713f89fb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

module Gitlab
  module ImportExport
    module AfterExportStrategies
      class DownloadNotificationStrategy < BaseAfterExportStrategy
        protected

        def delete_export?
          false
        end

        private

        def strategy_execute
          notification_service.project_exported(project, current_user)
        end

        def notification_service
          @notification_service ||= NotificationService.new
        end
      end
    end
  end
end