diff options
Diffstat (limited to 'apps/files_versions/appinfo/routes.php')
-rw-r--r-- | apps/files_versions/appinfo/routes.php | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/apps/files_versions/appinfo/routes.php b/apps/files_versions/appinfo/routes.php index bce2c8faead..22ded5e8723 100644 --- a/apps/files_versions/appinfo/routes.php +++ b/apps/files_versions/appinfo/routes.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors * SPDX-FileCopyrightText: 2016 ownCloud, Inc. @@ -6,9 +7,7 @@ */ namespace OCA\Files_Versions\AppInfo; -/** @var Application $application */ -$application = \OC::$server->query(Application::class); -$application->registerRoutes($this, [ +return [ 'routes' => [ [ 'name' => 'Preview#getPreview', @@ -16,12 +15,4 @@ $application->registerRoutes($this, [ 'verb' => 'GET', ], ], -]); - -/** @var $this \OCP\Route\IRouter */ -$this->create('files_versions_download', 'apps/files_versions/download.php') - ->actionInclude('files_versions/download.php'); -$this->create('files_versions_ajax_getVersions', 'apps/files_versions/ajax/getVersions.php') - ->actionInclude('files_versions/ajax/getVersions.php'); -$this->create('files_versions_ajax_rollbackVersion', 'apps/files_versions/ajax/rollbackVersion.php') - ->actionInclude('files_versions/ajax/rollbackVersion.php'); +]; |