gitlab-org--gitlab-foss/app/controllers/projects/registry/application_controller.rb

11 lines
240 B
Ruby
Raw Normal View History

module Projects
module Registry
class ApplicationController < Projects::ApplicationController
layout 'project'
before_action :verify_registry_enabled
before_action :authorize_read_container_image!
end
end
end