gitlab-org--gitlab-foss/app/models/project_services/slack_slash_commands_service.rb
2016-12-16 17:51:07 +01:00

19 lines
334 B
Ruby

class SlackSlashCommandsService < ChatSlashCommandsService
include TriggersHelper
def title
'Slack Slash Command'
end
def description
"Perform common operations on GitLab in Slack"
end
def to_param
'slack_slash_commands'
end
def presenter
Gitlab::ChatCommands::Presenters::Mattermost.new
end
end