Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/channels/issues_channel.rb')
-rw-r--r--app/channels/issues_channel.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/app/channels/issues_channel.rb b/app/channels/issues_channel.rb
deleted file mode 100644
index 5f3909b7716..00000000000
--- a/app/channels/issues_channel.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# frozen_string_literal: true
-
-class IssuesChannel < ApplicationCable::Channel
- def subscribed
- project = Project.find_by_full_path(params[:project_path])
- return reject unless project
-
- issue = project.issues.find_by_iid(params[:iid])
- return reject unless issue && Ability.allowed?(current_user, :read_issue, issue)
-
- stream_for issue
- end
-end