summaryrefslogtreecommitdiff
path: root/app/controllers/groups/harbor/repositories_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/groups/harbor/repositories_controller.rb')
-rw-r--r--app/controllers/groups/harbor/repositories_controller.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/app/controllers/groups/harbor/repositories_controller.rb b/app/controllers/groups/harbor/repositories_controller.rb
new file mode 100644
index 00000000000..364607f9b20
--- /dev/null
+++ b/app/controllers/groups/harbor/repositories_controller.rb
@@ -0,0 +1,24 @@
+# frozen_string_literal: true
+
+module Groups
+ module Harbor
+ class RepositoriesController < Groups::ApplicationController
+ feature_category :integrations
+
+ before_action :harbor_registry_enabled!
+ before_action do
+ push_frontend_feature_flag(:harbor_registry_integration)
+ end
+
+ def show
+ render :index
+ end
+
+ private
+
+ def harbor_registry_enabled!
+ render_404 unless Feature.enabled?(:harbor_registry_integration)
+ end
+ end
+ end
+end