summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/appinfo
diff options
context:
space:
mode:
authorMichael Gapczynski <mtgap@owncloud.com>2012-12-15 19:44:46 -0500
committerMichael Gapczynski <mtgap@owncloud.com>2012-12-15 19:44:59 -0500
commitbf05ff351faa693337107ed4a316e36e9aacd296 (patch)
treea3e325dcdc01d181255ed4a28bc74aa74ebc0d9c /apps/files_sharing/appinfo
parentb12abb2c94072ab5b84d0477ecb7ce9789bdda0d (diff)
downloadnextcloud-server-bf05ff351faa693337107ed4a316e36e9aacd296.tar.gz
nextcloud-server-bf05ff351faa693337107ed4a316e36e9aacd296.zip
Initial support for file sharing with filesystem branch
Diffstat (limited to 'apps/files_sharing/appinfo')
-rw-r--r--apps/files_sharing/appinfo/app.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/files_sharing/appinfo/app.php b/apps/files_sharing/appinfo/app.php
index 210c78ad174..189fd20cae3 100644
--- a/apps/files_sharing/appinfo/app.php
+++ b/apps/files_sharing/appinfo/app.php
@@ -3,6 +3,9 @@
OC::$CLASSPATH['OC_Share_Backend_File'] = "apps/files_sharing/lib/share/file.php";
OC::$CLASSPATH['OC_Share_Backend_Folder'] = 'apps/files_sharing/lib/share/folder.php';
OC::$CLASSPATH['OC\Files\Storage\Shared'] = "apps/files_sharing/lib/sharedstorage.php";
+OC::$CLASSPATH['OC\Files\Cache\Shared_Cache'] = 'apps/files_sharing/lib/cache.php';
+OC::$CLASSPATH['OC\Files\Cache\Shared_Permissions'] = 'apps/files_sharing/lib/permissions.php';
+OC::$CLASSPATH['OC\Files\Cache\Shared_Scanner'] = 'apps/files_sharing/lib/scanner.php';
OCP\Util::connectHook('OC_Filesystem', 'setup', '\OC\Files\Storage\Shared', 'setup');
OCP\Share::registerBackend('file', 'OC_Share_Backend_File');
OCP\Share::registerBackend('folder', 'OC_Share_Backend_Folder', 'file');