1# frozen_string_literal: true
2
3module Projects
4  module Packages
5    class InfrastructureRegistryController < Projects::ApplicationController
6      include PackagesAccess
7
8      feature_category :infrastructure_as_code
9
10      def show
11        @package = project.packages.find(params[:id])
12        @package_files = @package.package_files.recent
13      end
14    end
15  end
16end
17