debian-mirror-gitlab/app/controllers/projects/packages/packages_controller.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
372 B
Ruby
Raw Normal View History

2020-10-24 23:57:45 +05:30
# frozen_string_literal: true
module Projects
module Packages
class PackagesController < Projects::ApplicationController
include PackagesAccess
2021-01-03 14:25:43 +05:30
feature_category :package_registry
2022-07-16 23:28:13 +05:30
urgency :low
2020-10-24 23:57:45 +05:30
2022-03-02 08:16:31 +05:30
# The show action renders index to allow frontend routing to work on page refresh
2020-10-24 23:57:45 +05:30
def show
2022-03-02 08:16:31 +05:30
render :index
2020-10-24 23:57:45 +05:30
end
end
end
end