Skip to content

Commit de20bbf

Browse files
committed
chore(dav): drop legacy v1 entrypoint
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
1 parent 530b635 commit de20bbf

File tree

5 files changed

+0
-234
lines changed

5 files changed

+0
-234
lines changed

apps/dav/appinfo/v1/publicwebdav.php

Lines changed: 0 additions & 132 deletions
This file was deleted.

apps/dav/appinfo/v1/webdav.php

Lines changed: 0 additions & 87 deletions
This file was deleted.

build/psalm-baseline.xml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -63,18 +63,6 @@
6363
<code><![CDATA[CommentsEvent::EVENT_PRE_UPDATE]]></code>
6464
</DeprecatedConstant>
6565
</file>
66-
<file src="apps/dav/appinfo/v1/publicwebdav.php">
67-
<InternalMethod>
68-
<code><![CDATA[Filesystem::logWarningWhenAddingStorageWrapper($previousLog)]]></code>
69-
<code><![CDATA[Filesystem::logWarningWhenAddingStorageWrapper(false)]]></code>
70-
<code><![CDATA[new View($node->getPath())]]></code>
71-
</InternalMethod>
72-
</file>
73-
<file src="apps/dav/appinfo/v1/webdav.php">
74-
<DeprecatedMethod>
75-
<code><![CDATA[dispatch]]></code>
76-
</DeprecatedMethod>
77-
</file>
7866
<file src="apps/dav/appinfo/v2/publicremote.php">
7967
<InternalMethod>
8068
<code><![CDATA[new View($node->getPath())]]></code>

public.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222

2323
function resolveService(string $service): string {
2424
$services = [
25-
'webdav' => 'dav/appinfo/v1/publicwebdav.php',
2625
'dav' => 'dav/appinfo/v2/publicremote.php',
2726
];
2827
if (isset($services[$service])) {

remote.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,11 @@ function handleException(Exception|Error $e): void {
7777
*/
7878
function resolveService($service) {
7979
$services = [
80-
'webdav' => 'dav/appinfo/v1/webdav.php',
8180
'dav' => 'dav/appinfo/v2/remote.php',
8281
'caldav' => 'dav/appinfo/v1/caldav.php',
8382
'calendar' => 'dav/appinfo/v1/caldav.php',
8483
'carddav' => 'dav/appinfo/v1/carddav.php',
8584
'contacts' => 'dav/appinfo/v1/carddav.php',
86-
'files' => 'dav/appinfo/v1/webdav.php',
8785
'direct' => 'dav/appinfo/v2/direct.php',
8886
];
8987
if (isset($services[$service])) {

0 commit comments

Comments
 (0)