summaryrefslogtreecommitdiff
path: root/app/controllers/projects/packages/packages_controller.rb
blob: f045bae5c96942b0ace6da30b8d5c972e4ec0700 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

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

      feature_category :package_registry
      urgency :low

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