debian-mirror-gitlab/app/controllers/projects/packages/infrastructure_registry_controller.rb
2023-01-13 15:02:22 +05:30

16 lines
330 B
Ruby

# frozen_string_literal: true
module Projects
module Packages
class InfrastructureRegistryController < Projects::ApplicationController
include PackagesAccess
feature_category :package_registry
urgency :low
def show
@package = project.packages.find(params[:id])
end
end
end
end