summaryrefslogtreecommitdiff
path: root/app/controllers/projects/packages/infrastructure_registry_controller.rb
blob: f1410bf60437dcc044429dd27771267bc7a7e0c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

module Projects
  module Packages
    class InfrastructureRegistryController < Projects::ApplicationController
      include PackagesAccess

      feature_category :infrastructure_as_code
      urgency :low

      def show
        @package = project.packages.find(params[:id])
      end
    end
  end
end