mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/OATHAuth
synced 2024-11-13 18:16:56 +00:00
Update moved class RawMessage
See T321882. Moved in I195cf4c67bd514 Bug: T321681 Change-Id: If34bda0a8d0f882d51fea1fcf4257bb5de09948a
This commit is contained in:
parent
24de243925
commit
4b32885285
|
@ -10,7 +10,7 @@
|
|||
"descriptionmsg": "oathauth-desc",
|
||||
"type": "other",
|
||||
"requires": {
|
||||
"MediaWiki": ">= 1.38.0"
|
||||
"MediaWiki": ">= 1.40.0"
|
||||
},
|
||||
"license-name": "GPL-2.0-or-later AND GPL-3.0-or-later",
|
||||
"attributes": {
|
||||
|
@ -178,15 +178,23 @@
|
|||
"RateLimits": {
|
||||
"badoath": {
|
||||
"&can-bypass": false,
|
||||
"user": [ 10, 60 ],
|
||||
"user-global": [ 10, 60 ]
|
||||
"user": [
|
||||
10,
|
||||
60
|
||||
],
|
||||
"user-global": [
|
||||
10,
|
||||
60
|
||||
]
|
||||
}
|
||||
},
|
||||
"ReauthenticateTime": {
|
||||
"oathauth-enable": 60
|
||||
},
|
||||
"load_composer_autoloader": true,
|
||||
"LogTypes": [ "oath" ],
|
||||
"LogTypes": [
|
||||
"oath"
|
||||
],
|
||||
"LogNames": {
|
||||
"oath": "oath-log-name"
|
||||
},
|
||||
|
@ -201,8 +209,12 @@
|
|||
},
|
||||
"ActionFilteredLogs": {
|
||||
"oath": {
|
||||
"verify": [ "verify" ],
|
||||
"disable-other": [ "disable-other" ]
|
||||
"verify": [
|
||||
"verify"
|
||||
],
|
||||
"disable-other": [
|
||||
"disable-other"
|
||||
]
|
||||
}
|
||||
},
|
||||
"manifest_version": 2
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
namespace MediaWiki\Extension\OATHAuth\Auth;
|
||||
|
||||
use MediaWiki\Auth\AuthenticationRequest;
|
||||
use RawMessage;
|
||||
use MediaWiki\Language\RawMessage;
|
||||
|
||||
/**
|
||||
* AuthManager value object for the TOTP second factor of an authentication:
|
||||
|
|
Loading…
Reference in a new issue