e8dd299e7c
This improves the output produced when running an unknown command, running the "help" command, and when trying to run a command you are not allowed to run. The new help output includes links to the project of the chatops integration, and a link to the chatops documentation.
28 lines
556 B
Ruby
28 lines
556 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module SlashCommands
|
|
class ApplicationHelp < BaseCommand
|
|
def initialize(project, params)
|
|
@project = project
|
|
@params = params
|
|
end
|
|
|
|
def execute
|
|
Gitlab::SlashCommands::Presenters::Help
|
|
.new(project, commands)
|
|
.present(trigger, params[:text])
|
|
end
|
|
|
|
private
|
|
|
|
def trigger
|
|
"#{params[:command]} [project name or alias]"
|
|
end
|
|
|
|
def commands
|
|
Gitlab::SlashCommands::Command.commands
|
|
end
|
|
end
|
|
end
|
|
end
|