debian-mirror-gitlab/app/controllers/projects/packages/packages_controller.rb
2022-03-02 08:16:31 +05:30

16 lines
353 B
Ruby

# 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