2018-09-25 23:45:43 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-03-31 07:08:09 -04:00
|
|
|
module Projects
|
|
|
|
module Registry
|
|
|
|
class ApplicationController < Projects::ApplicationController
|
|
|
|
layout 'project'
|
|
|
|
|
2017-03-31 07:56:07 -04:00
|
|
|
before_action :verify_registry_enabled!
|
2017-03-31 07:08:09 -04:00
|
|
|
before_action :authorize_read_container_image!
|
2017-03-31 07:56:07 -04:00
|
|
|
|
2020-10-08 14:08:32 -04:00
|
|
|
feature_category :container_registry
|
|
|
|
|
2017-03-31 07:56:07 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
def verify_registry_enabled!
|
|
|
|
render_404 unless Gitlab.config.registry.enabled
|
|
|
|
end
|
2017-03-31 07:08:09 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|