From 2d534f3ea6ab39c463ac27692c1121c3faf5c92a Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Fri, 1 Jan 2016 23:13:31 -0800 Subject: [PATCH] registration: Allow setting $wgCentralIdLookupProviders Follows up d032bb52cd8c0d. Change-Id: I43f4fb3d7b2fafc437abcfda73bf865aa8600ba2 --- docs/extension.schema.json | 4 ++++ includes/registration/ExtensionProcessor.php | 1 + 2 files changed, 5 insertions(+) diff --git a/docs/extension.schema.json b/docs/extension.schema.json index 8c760cc31d..19c2b3771a 100644 --- a/docs/extension.schema.json +++ b/docs/extension.schema.json @@ -504,6 +504,10 @@ "type": "object", "description": "Registry of factory functions to create Config objects" }, + "CentralIdLookupProviders": { + "type": "object", + "description": "Central ID lookup providers" + }, "namespaces": { "type": "array", "description": "Method to add extra namespaces", diff --git a/includes/registration/ExtensionProcessor.php b/includes/registration/ExtensionProcessor.php index 13c450a415..0e14ee683f 100644 --- a/includes/registration/ExtensionProcessor.php +++ b/includes/registration/ExtensionProcessor.php @@ -23,6 +23,7 @@ class ExtensionProcessor implements Processor { 'AvailableRights', 'ContentHandlers', 'ConfigRegistry', + 'CentralIdLookupProviders', 'RateLimits', 'RecentChangesFlags', 'MediaHandlers', -- 2.20.1