aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGravatar Alexis Degrugillier <aledeg@users.noreply.github.com> 2021-02-17 10:34:54 -0500
committerGravatar GitHub <noreply@github.com> 2021-02-17 16:34:54 +0100
commit787e8fa463a2a9d24876aa1040d90e43ba122e34 (patch)
tree147e345bffeccd87186350e39385c3363fc46070 /lib
parent8961c7beac40ee8b2d5623e136d57eb32dc910e9 (diff)
Add user maintenance hooks (#3440)
The new hook allows to add maintenance extensions at the user level. See #3398
Diffstat (limited to 'lib')
-rw-r--r--lib/Minz/ExtensionManager.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Minz/ExtensionManager.php b/lib/Minz/ExtensionManager.php
index 2a68f8393..841d970dd 100644
--- a/lib/Minz/ExtensionManager.php
+++ b/lib/Minz/ExtensionManager.php
@@ -39,6 +39,10 @@ class Minz_ExtensionManager {
'list' => array(),
'signature' => 'NoneToNone',
),
+ 'freshrss_user_maintenance' => array( // function() -> none
+ 'list' => array(),
+ 'signature' => 'NoneToNone',
+ ),
'js_vars' => array( // function($vars = array) -> array | null
'list' => array(),
'signature' => 'OneToOne',