debian-mirror-gitlab/lib/gitlab/slash_commands/incident_management/incident_new.rb
2023-06-20 00:43:36 +05:30

29 lines
644 B
Ruby

# frozen_string_literal: true
module Gitlab
module SlashCommands
module IncidentManagement
class IncidentNew < IncidentCommand
def self.help_message
'incident declare *(Beta)*'
end
def self.allowed?(_project, _user)
Feature.enabled?(:incident_declare_slash_command)
end
def self.match(text)
text == 'incident declare'
end
private
def presenter
Gitlab::SlashCommands::Presenters::IncidentManagement::IncidentNew.new
end
end
end
end
end
Gitlab::SlashCommands::IncidentManagement::IncidentNew.prepend_mod