diff options
author | blizzz <blizzz@owncloud.com> | 2014-08-21 19:59:31 +0200 |
---|---|---|
committer | blizzz <blizzz@owncloud.com> | 2014-08-21 19:59:31 +0200 |
commit | 52d5429768acdb87b2dc2efedc89eb4ad0d29139 (patch) | |
tree | 6ab5900a70361bbf13633e1b1ca7310e08011ee5 /apps/files_encryption/appinfo | |
parent | 9c980954f4cbb0ff023f5065d64b3eb931914be0 (diff) | |
parent | ab12bd292d1ac44db427332c265fa58bcf4c3cb4 (diff) | |
download | nextcloud-server-52d5429768acdb87b2dc2efedc89eb4ad0d29139.tar.gz nextcloud-server-52d5429768acdb87b2dc2efedc89eb4ad0d29139.zip |
Merge pull request #10522 from owncloud/removeLoadAppScript
Remove loadAppScriptFile
Diffstat (limited to 'apps/files_encryption/appinfo')
-rw-r--r-- | apps/files_encryption/appinfo/routes.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/apps/files_encryption/appinfo/routes.php b/apps/files_encryption/appinfo/routes.php index 07ff920a60d..97635ae1236 100644 --- a/apps/files_encryption/appinfo/routes.php +++ b/apps/files_encryption/appinfo/routes.php @@ -5,5 +5,18 @@ * 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); |