summaryrefslogtreecommitdiffstats
path: root/apps/files_encryption/appinfo/routes.php
blob: 97635ae1236b93f7740cb28323a44d588c1f101e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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('files_encryption_ajax_adminrecovery', 'ajax/adminrecovery.php')
	->actionInclude('files_encryption/ajax/adminrecovery.php');
$this->create('files_encryption_ajax_changeRecoveryPassword', 'ajax/changeRecoveryPassword.php')
	->actionInclude('files_encryption/ajax/changeRecoveryPassword.php');
$this->create('files_encryption_ajax_getMigrationStatus', 'ajax/getMigrationStatus.php')
	->actionInclude('files_encryption/ajax/getMigrationStatus.php');
$this->create('files_encryption_ajax_updatePrivateKeyPassword', 'ajax/updatePrivateKeyPassword.php')
	->actionInclude('files_encryption/ajax/updatePrivateKeyPassword.php');
$this->create('files_encryption_ajax_userrecovery', 'ajax/userrecovery.php')
	->actionInclude('files_encryption/ajax/userrecovery.php');

// Register with the capabilities API
OC_API::register('get', '/cloud/capabilities', array('OCA\Encryption\Capabilities', 'getCapabilities'), 'files_encryption', OC_API::USER_AUTH);