summaryrefslogtreecommitdiff
path: root/app/controllers/groups/settings/packages_and_registries_controller.rb
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