Actions
Bug #90296
closedHTTP Method REPORT Needed
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
System/Bootstrap/Configuration
Target version:
Start date:
2020-02-02
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
10
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Hey,
for one of my extensions i need the REPORT Http Method.
Therefor the Class TYPO3\CMS\Core\Http\Request needs to be patched.
```
/**
* Supported HTTP methods
*
* @var array
*/
protected $supportedMethods = [
'CONNECT',
'DELETE',
'GET',
'HEAD',
'OPTIONS',
'PATCH',
'POST',
'PUT',
'TRACE',
// WebDAV methods
'COPY',
'LOCK',
'MKCOL',
'MOVE',
'PROPFIND',
'PROPPATCH',
'UNLOCK',
'REPORT'
];
```
I will commit a github pr and reference this issue.
br
Stefan
Updated by Georg Ringer almost 5 years ago
- Related to Task #90297: Add REPORT HTTP Method added
Updated by Georg Ringer almost 5 years ago
- Status changed from New to Closed
closed in favor of auto created issue #90297
Actions