diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-02-09 16:02:53 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2016-02-10 08:40:45 +0100 |
commit | a4a7cf40a1f8e174d2a45fbf791db2bcada5ce68 (patch) | |
tree | d9b552b05569d4ef19a2ece202a7c55691b18774 /apps/files_sharing/appinfo | |
parent | 3ff88c8c84d887c36a5b6587c402bd627bcffdd6 (diff) | |
download | nextcloud-server-a4a7cf40a1f8e174d2a45fbf791db2bcada5ce68.tar.gz nextcloud-server-a4a7cf40a1f8e174d2a45fbf791db2bcada5ce68.zip |
Fix the notification API usage
Diffstat (limited to 'apps/files_sharing/appinfo')
-rw-r--r-- | apps/files_sharing/appinfo/app.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/files_sharing/appinfo/app.php b/apps/files_sharing/appinfo/app.php index 1d3d4b0f634..29202c15b22 100644 --- a/apps/files_sharing/appinfo/app.php +++ b/apps/files_sharing/appinfo/app.php @@ -119,4 +119,9 @@ $manager->registerNotifier(function() { return new \OCA\Files_Sharing\Notifier( \OC::$server->getL10NFactory() ); +}, function() use ($l) { + return [ + 'id' => 'files_sharing', + 'name' => $l->t('Federated sharing'), + ]; }); |