diff options
| author | 2021-02-17 10:34:54 -0500 | |
|---|---|---|
| committer | 2021-02-17 16:34:54 +0100 | |
| commit | 787e8fa463a2a9d24876aa1040d90e43ba122e34 (patch) | |
| tree | 147e345bffeccd87186350e39385c3363fc46070 /lib | |
| parent | 8961c7beac40ee8b2d5623e136d57eb32dc910e9 (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.php | 4 |
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', |
