diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-06-04 11:10:11 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-06-04 11:10:11 +0200 |
commit | b3fdda175158fee77d76131e4dfa479b34f7d788 (patch) | |
tree | 9b12b0aebe06d1c26243694208fb3e46565b0588 /apps/files_sharing/appinfo | |
parent | 3a1994d00149bea6d554c96a3bdee3126cfb17b8 (diff) | |
download | nextcloud-server-b3fdda175158fee77d76131e4dfa479b34f7d788.tar.gz nextcloud-server-b3fdda175158fee77d76131e4dfa479b34f7d788.zip |
Added "Shared with link" sidebar section in files app
Added section to only show link shares.
Please note that the filtering is currently done on the client side
which might not be the most efficient way of doing it.
Diffstat (limited to 'apps/files_sharing/appinfo')
-rw-r--r-- | apps/files_sharing/appinfo/app.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/files_sharing/appinfo/app.php b/apps/files_sharing/appinfo/app.php index 21b2646c5ea..2cd901c07af 100644 --- a/apps/files_sharing/appinfo/app.php +++ b/apps/files_sharing/appinfo/app.php @@ -41,3 +41,12 @@ OC_FileProxy::register(new OCA\Files\Share\Proxy()); "name" => $l->t('Shared with others') ) ); +\OCA\Files\App::getNavigationManager()->add( + array( + "id" => 'sharinglinks', + "appname" => 'files_sharing', + "script" => 'list.php', + "order" => 20, + "name" => $l->t('Shared with link') + ) +); |