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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/slash_commands/incident_management/incident_new.rb')
-rw-r--r--lib/gitlab/slash_commands/incident_management/incident_new.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/gitlab/slash_commands/incident_management/incident_new.rb b/lib/gitlab/slash_commands/incident_management/incident_new.rb
index a43235bdeb6..b5c43873355 100644
--- a/lib/gitlab/slash_commands/incident_management/incident_new.rb
+++ b/lib/gitlab/slash_commands/incident_management/incident_new.rb
@@ -16,6 +16,14 @@ module Gitlab
text == 'incident declare'
end
+ def execute(_match)
+ response = ::Integrations::SlackInteractions::IncidentManagement::IncidentModalOpenedService
+ .new(slack_installation, current_user, params)
+ .execute
+
+ presenter.present(response.message)
+ end
+
private
def presenter