ea090291bb
Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/27070 Deprecate "chat commands" in favor of "slash commands" We looked for things like: - `slash commmand` - `slash_command` - `slash-command` - `SlashCommand`
5 lines
88 B
Ruby
5 lines
88 B
Ruby
module Gitlab
|
|
module SlashCommands
|
|
Result = Struct.new(:type, :message)
|
|
end
|
|
end
|