Welcome to mirror list, hosted at ThFree Co, Russian Federation.

incident_new.rb « incident_management « presenters « slash_commands « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5030c8282db65dd7d894b4753d917dff91026a7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module Gitlab
  module SlashCommands
    module Presenters
      module IncidentManagement
        class IncidentNew < Presenters::Base
          def present(message)
            ephemeral_response(text: message)
          end
        end
      end
    end
  end
end