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`
13 lines
307 B
Ruby
13 lines
307 B
Ruby
module Gitlab
|
|
module SlashCommands
|
|
class IssueCommand < BaseCommand
|
|
def self.available?(project)
|
|
project.issues_enabled? && project.default_issues_tracker?
|
|
end
|
|
|
|
def collection
|
|
IssuesFinder.new(current_user, project_id: project.id).execute
|
|
end
|
|
end
|
|
end
|
|
end
|