debian-mirror-gitlab/lib/gitlab/slash_commands/incident_management/incident_new.rb
2023-05-27 22:25:52 +05:30

29 lines
635 B
Ruby

# frozen_string_literal: true
module Gitlab
module SlashCommands
module IncidentManagement
class IncidentNew < IncidentCommand
def self.help_message
'incident declare'
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