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

packages_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: 5de71466c10c344fdc6e04eaf25853fc5b0972ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

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

      feature_category :package_registry

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