diff options
author | Tom Needham <tom@owncloud.com> | 2013-02-10 14:42:23 +0100 |
---|---|---|
committer | Tom Needham <tom@owncloud.com> | 2013-02-10 14:42:23 +0100 |
commit | f141f8b523f71351841f64ab1e4782b4535ca1b7 (patch) | |
tree | 4f0acbbe232e9160c860ebe5a55fe16052d7c44f /apps/files_encryption/appinfo | |
parent | 6d74aa0d00cd19a008059705071ebd9fa759a9ea (diff) | |
download | nextcloud-server-f141f8b523f71351841f64ab1e4782b4535ca1b7.tar.gz nextcloud-server-f141f8b523f71351841f64ab1e4782b4535ca1b7.zip |
Add further capabilities to /cloud/capabilitites api call
Diffstat (limited to 'apps/files_encryption/appinfo')
-rw-r--r-- | apps/files_encryption/appinfo/app.php | 1 | ||||
-rw-r--r-- | apps/files_encryption/appinfo/routes.php | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/apps/files_encryption/appinfo/app.php b/apps/files_encryption/appinfo/app.php index f83109a18ea..3c100b4957d 100644 --- a/apps/files_encryption/appinfo/app.php +++ b/apps/files_encryption/appinfo/app.php @@ -7,6 +7,7 @@ OC::$CLASSPATH['OCA\Encryption\Keymanager'] = 'apps/files_encryption/lib/keymana OC::$CLASSPATH['OCA\Encryption\Stream'] = 'apps/files_encryption/lib/stream.php'; OC::$CLASSPATH['OCA\Encryption\Proxy'] = 'apps/files_encryption/lib/proxy.php'; OC::$CLASSPATH['OCA\Encryption\Session'] = 'apps/files_encryption/lib/session.php'; +OC::$CLASSPATH['OCA\Encryption\Capabilities'] = 'apps/files_encryption/lib/capabilities.php'; OC_FileProxy::register( new OCA\Encryption\Proxy() ); diff --git a/apps/files_encryption/appinfo/routes.php b/apps/files_encryption/appinfo/routes.php new file mode 100644 index 00000000000..ab83432a4b2 --- /dev/null +++ b/apps/files_encryption/appinfo/routes.php @@ -0,0 +1,9 @@ +<?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. + */ + +// Register with the capabilities API +OC_API::register('get', '/cloud/capabilities', array('OCA\Encryption\Capabilities', 'getCapabilities'), 'files_encryption', OC_API::USER_AUTH);
\ No newline at end of file |