fix file upload

This commit is contained in:
2025-05-08 19:19:39 +02:00
parent 991562a456
commit 3f1a8b14cb
13 changed files with 724 additions and 256 deletions

View File

@ -14,13 +14,4 @@
<dependencies>
<nextcloud min-version="29" max-version="29"/>
</dependencies>
<navigations>
<navigation>
<id>webtransfer</id>
<name>Web Transfer</name>
<route>webtransfer.page.index</route>
<icon>app.svg</icon>
<type>link</type>
</navigation>
</navigations>
</info>

View File

@ -2,6 +2,7 @@
return [
'routes' => [
['name' => 'page#main', 'url' => '/', 'verb' => 'GET'],
['name' => 'page#post', 'url' => '/post', 'verb' => 'POST'],
['name' => 'page#zipDrop', 'url' => '/zipDrop', 'verb' => 'GET'],
['name' => 'page#getFile', 'url' => '/getFile', 'verb' => 'GET']
]
];