summaryrefslogtreecommitdiff
path: root/lib/gitlab/chat_commands/issue_command.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/chat_commands/issue_command.rb')
-rw-r--r--lib/gitlab/chat_commands/issue_command.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/gitlab/chat_commands/issue_command.rb b/lib/gitlab/chat_commands/issue_command.rb
deleted file mode 100644
index 84de3e44c70..00000000000
--- a/lib/gitlab/chat_commands/issue_command.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-module Gitlab
- module ChatCommands
- 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