43 lines
1.3 KiB
Ruby
43 lines
1.3 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!
|
|
|
|
def index
|
|
respond_to do |format|
|
|
format.html
|
|
format.json do
|
|
@images = ContainerRepositoriesFinder.new(user: current_user, subject: group, params: params.slice(:name))
|
|
.execute
|
|
.with_api_entity_associations
|
|
|
|
track_event(:list_repositories)
|
|
|
|
serializer = ContainerRepositoriesSerializer
|
|
.new(current_user: current_user)
|
|
|
|
render json: serializer.with_pagination(request, response)
|
|
.represent_read_only(@images)
|
|
end
|
|
end
|
|
end
|
|
|
|
# The show action renders index to allow frontend routing to work on page refresh
|
|
def show
|
|
render :index
|
|
end
|
|
|
|
private
|
|
|
|
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
|