2013-02-09 15:53:54 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
2016-10-16 21:42:35 +03:00
|
|
|
* @copyright Copyright (c) 2016, Roeland Jago Douma <roeland@famdouma.nl>
|
2016-07-21 17:49:16 +03:00
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Tom Needham <tom@owncloud.com>
|
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
2013-02-09 15:53:54 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2015-03-21 22:12:55 +03:00
|
|
|
namespace OCA\Files_Versions\AppInfo;
|
|
|
|
|
2019-10-11 09:33:09 +03:00
|
|
|
/** @var Application $application */
|
|
|
|
$application = \OC::$server->query(Application::class);
|
2016-10-16 21:42:35 +03:00
|
|
|
$application->registerRoutes($this, [
|
|
|
|
'routes' => [
|
|
|
|
[
|
|
|
|
'name' => 'Preview#getPreview',
|
|
|
|
'url' => '/preview',
|
|
|
|
'verb' => 'GET',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
]);
|
2015-03-21 22:12:55 +03:00
|
|
|
|
2015-02-26 13:37:37 +03:00
|
|
|
/** @var $this \OCP\Route\IRouter */
|
2020-04-14 19:24:02 +03:00
|
|
|
$this->create('files_versions_download', 'apps/files_versions/download.php')
|
2014-12-02 19:52:31 +03:00
|
|
|
->actionInclude('files_versions/download.php');
|
2020-04-14 19:24:02 +03:00
|
|
|
$this->create('files_versions_ajax_getVersions', 'apps/files_versions/ajax/getVersions.php')
|
2014-08-19 17:25:16 +04:00
|
|
|
->actionInclude('files_versions/ajax/getVersions.php');
|
2020-04-14 19:24:02 +03:00
|
|
|
$this->create('files_versions_ajax_rollbackVersion', 'apps/files_versions/ajax/rollbackVersion.php')
|
2014-08-19 17:25:16 +04:00
|
|
|
->actionInclude('files_versions/ajax/rollbackVersion.php');
|