Fix public upload by also load the semaphore method

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
Morris Jobke 2019-05-07 23:48:06 +02:00 committed by Backportbot
parent 064fa5bdb5
commit da3c3a04dc
2 changed files with 5 additions and 0 deletions

View File

@ -32,6 +32,10 @@
};
};
// needed on public share page to properly register this
if (!OCA.Files) {
OCA.Files = {};
}
OCA.Files.Semaphore = Semaphore;
})();

View File

@ -412,6 +412,7 @@ class ShareController extends AuthPublicShareController {
}
// Load files we need
\OCP\Util::addScript('files', 'semaphore');
\OCP\Util::addScript('files', 'file-upload');
\OCP\Util::addStyle('files_sharing', 'publicView');
\OCP\Util::addScript('files_sharing', 'public');