Welcome to mirror list, hosted at ThFree Co, Russian Federation.

packages_and_registries_controller.rb « settings « groups « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dbc1e68742ba31e7f824caf79fabadf618d8e0a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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