40 lines
1.1 KiB
Ruby
40 lines
1.1 KiB
Ruby
|
# frozen_string_literal: true
|
||
|
module Groups
|
||
|
module Registry
|
||
|
class RepositoriesController < Groups::ApplicationController
|
||
|
before_action :verify_container_registry_enabled!
|
||
|
before_action :authorize_read_container_image!
|
||
|
before_action :feature_flag_group_container_registry_browser!
|
||
|
|
||
|
def index
|
||
|
track_event(:list_repositories)
|
||
|
|
||
|
respond_to do |format|
|
||
|
format.html
|
||
|
format.json do
|
||
|
@images = group.container_repositories.with_api_entity_associations
|
||
|
|
||
|
render json: ContainerRepositoriesSerializer
|
||
|
.new(current_user: current_user)
|
||
|
.represent(@images)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def feature_flag_group_container_registry_browser!
|
||
|
render_404 unless Feature.enabled?(:group_container_registry_browser, group)
|
||
|
end
|
||
|
|
||
|
def verify_container_registry_enabled!
|
||
|
render_404 unless Gitlab.config.registry.enabled
|
||
|
end
|
||
|
|
||
|
def authorize_read_container_image!
|
||
|
return render_404 unless can?(current_user, :read_container_image, group)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|