summaryrefslogtreecommitdiff
path: root/app/controllers/projects/packages/packages_controller.rb
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