mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/LoginNotify
synced 2024-11-24 06:54:08 +00:00
extension.json - don't use array syntax when hooks only have 1 handler
Change-Id: I88ae489a644dd0cb11f4c3b3a9963a93e286a8a4
This commit is contained in:
parent
19b5572039
commit
ff9ae6b7e3
|
@ -29,18 +29,10 @@
|
|||
"LoginNotify\\": "includes/"
|
||||
},
|
||||
"Hooks": {
|
||||
"BeforeCreateEchoEvent": [
|
||||
"LoginNotify\\Hooks::onBeforeCreateEchoEvent"
|
||||
],
|
||||
"EchoGetBundleRules": [
|
||||
"LoginNotify\\Hooks::onEchoGetBundleRules"
|
||||
],
|
||||
"AuthManagerLoginAuthenticateAudit": [
|
||||
"LoginNotify\\Hooks::onAuthManagerLoginAuthenticateAudit"
|
||||
],
|
||||
"LocalUserCreated": [
|
||||
"LoginNotify\\Hooks::onLocalUserCreated"
|
||||
]
|
||||
"BeforeCreateEchoEvent": "LoginNotify\\Hooks::onBeforeCreateEchoEvent",
|
||||
"EchoGetBundleRules": "LoginNotify\\Hooks::onEchoGetBundleRules",
|
||||
"AuthManagerLoginAuthenticateAudit": "LoginNotify\\Hooks::onAuthManagerLoginAuthenticateAudit",
|
||||
"LocalUserCreated": "LoginNotify\\Hooks::onLocalUserCreated"
|
||||
},
|
||||
"JobClasses": {
|
||||
"LoginNotifyChecks": "LoginNotify\\DeferredChecksJob"
|
||||
|
|
Loading…
Reference in a new issue