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:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-11-20 18:10:40 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-11-20 18:10:40 +0300
commitdd1e2632dff0318aae7bc9f12cdcb4b976b92d22 (patch)
tree16373b6b9f7fec56f8a4f71038d9a44693d09e3e /app/controllers
parentcc541e8b2ef8331e3dcfaed8f0108ee6d08f56b9 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/projects/integrations/shimos_controller.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/app/controllers/projects/integrations/shimos_controller.rb b/app/controllers/projects/integrations/shimos_controller.rb
deleted file mode 100644
index 6c8313d0805..00000000000
--- a/app/controllers/projects/integrations/shimos_controller.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-# frozen_string_literal: true
-
-module Projects
- module Integrations
- class ShimosController < Projects::ApplicationController
- feature_category :integrations
-
- before_action :ensure_renderable
-
- def show; end
-
- private
-
- def ensure_renderable
- render_404 unless project.has_shimo? && project.shimo_integration&.render?
- end
- end
- end
-end