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