summaryrefslogtreecommitdiff
path: root/app/controllers/projects/registry/application_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/projects/registry/application_controller.rb')
-rw-r--r--app/controllers/projects/registry/application_controller.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/controllers/projects/registry/application_controller.rb b/app/controllers/projects/registry/application_controller.rb
new file mode 100644
index 00000000000..a56f9c58726
--- /dev/null
+++ b/app/controllers/projects/registry/application_controller.rb
@@ -0,0 +1,16 @@
+module Projects
+ module Registry
+ class ApplicationController < Projects::ApplicationController
+ layout 'project'
+
+ before_action :verify_registry_enabled!
+ before_action :authorize_read_container_image!
+
+ private
+
+ def verify_registry_enabled!
+ render_404 unless Gitlab.config.registry.enabled
+ end
+ end
+ end
+end