Welcome to mirror list, hosted at ThFree Co, Russian Federation.

infrastructure_registry_controller.rb « packages « projects « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 733df9fdb45f43c863aa19f5c71932e037d05405 (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 :package_registry
      urgency :low

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