nextcloud/apps/files_versions/appinfo/routes.php

16 lines
538 B
PHP
Raw Normal View History

<?php
/**
* Copyright (c) 2013, Tom Needham <tom@owncloud.com>
* This file is licensed under the Affero General Public License version 3 or later.
* See the COPYING-README file.
*/
/** @var $this \OCP\Route\IRouter */
$this->create('core_ajax_versions_preview', '/preview')->action(
2013-10-02 17:23:51 +04:00
function() {
require_once __DIR__ . '/../ajax/preview.php';
2013-10-02 18:34:05 +04:00
});
// Register with the capabilities API
OC_API::register('get', '/cloud/capabilities', array('OCA\Files_Versions\Capabilities', 'getCapabilities'), 'files_versions', OC_API::USER_AUTH);