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: 969922266fa9df783ea3e5f30a4c1c05d7ea625e (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 PackagesController < Projects::ApplicationController
      include PackagesAccess

      feature_category :package_registry

      # The show action renders index to allow frontend routing to work on page refresh
      def show
        render :index
      end
    end
  end
end