debian-mirror-gitlab/app/controllers/projects/packages/infrastructure_registry_controller.rb
2022-04-04 11:22:00 +05:30

16 lines
384 B
Ruby

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