debian-mirror-gitlab/lib/gitlab/import_export/after_export_strategies/download_notification_strategy.rb
2018-05-09 12:01:36 +05:30

17 lines
399 B
Ruby

module Gitlab
module ImportExport
module AfterExportStrategies
class DownloadNotificationStrategy < BaseAfterExportStrategy
private
def strategy_execute
notification_service.project_exported(project, current_user)
end
def notification_service
@notification_service ||= NotificationService.new
end
end
end
end
end