debian-mirror-gitlab/app/controllers/groups/settings/packages_and_registries_controller.rb

15 lines
268 B
Ruby
Raw Normal View History

2021-03-08 18:12:59 +05:30
# frozen_string_literal: true
module Groups
module Settings
class PackagesAndRegistriesController < Groups::ApplicationController
before_action :authorize_admin_group!
feature_category :package_registry
def index
end
end
end
end