diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-06-05 10:59:54 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-06-05 10:59:54 +0200 |
commit | e0c4e960d9d1289c28dfbffde2fb9c1d30987f56 (patch) | |
tree | 5e0e4256ca05a1302040781637154b1bfd4d15b0 /apps/files_sharing/appinfo | |
parent | f1bf06f8cfdcedf83c781ca704a1573dab07dabc (diff) | |
parent | 816db7aef1e2b67cc636d099f1571ae30f8a21a1 (diff) | |
download | nextcloud-server-e0c4e960d9d1289c28dfbffde2fb9c1d30987f56.tar.gz nextcloud-server-e0c4e960d9d1289c28dfbffde2fb9c1d30987f56.zip |
Merge pull request #8861 from owncloud/share-overview-linklist
Added Shared with link sidebar section in files app
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 81f91b60d30..d44c652dd98 100644 --- a/apps/files_sharing/appinfo/app.php +++ b/apps/files_sharing/appinfo/app.php @@ -44,3 +44,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 by link') + ) +); |