summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/federatedfilesharing/appinfo/app.php17
-rw-r--r--apps/federatedfilesharing/lib/notifier.php (renamed from apps/files_sharing/lib/notifier.php)2
-rw-r--r--apps/files_sharing/appinfo/app.php12
3 files changed, 18 insertions, 13 deletions
diff --git a/apps/federatedfilesharing/appinfo/app.php b/apps/federatedfilesharing/appinfo/app.php
index 4666d343f7e..c33a887c6d6 100644
--- a/apps/federatedfilesharing/appinfo/app.php
+++ b/apps/federatedfilesharing/appinfo/app.php
@@ -20,4 +20,21 @@
*/
$app = new \OCA\FederatedFileSharing\AppInfo\Application('federatedfilesharing');
+
+use OCA\FederatedFileSharing\Notifier;
+
+$l = \OC::$server->getL10N('files_sharing');
+
$app->registerSettings();
+
+$manager = \OC::$server->getNotificationManager();
+$manager->registerNotifier(function() {
+ return new Notifier(
+ \OC::$server->getL10NFactory()
+ );
+}, function() use ($l) {
+ return [
+ 'id' => 'files_sharing',
+ 'name' => $l->t('Federated sharing'),
+ ];
+});
diff --git a/apps/files_sharing/lib/notifier.php b/apps/federatedfilesharing/lib/notifier.php
index aab31f07570..1c8d92c7eca 100644
--- a/apps/files_sharing/lib/notifier.php
+++ b/apps/federatedfilesharing/lib/notifier.php
@@ -19,7 +19,7 @@
*
*/
-namespace OCA\Files_Sharing;
+namespace OCA\FederatedFileSharing;
use OCP\Notification\INotification;
diff --git a/apps/files_sharing/appinfo/app.php b/apps/files_sharing/appinfo/app.php
index da573d11ec5..32eee9b6c9c 100644
--- a/apps/files_sharing/appinfo/app.php
+++ b/apps/files_sharing/appinfo/app.php
@@ -103,15 +103,3 @@ if ($config->getAppValue('core', 'shareapi_enabled', 'yes') === 'yes') {
}
}
}
-
-$manager = \OC::$server->getNotificationManager();
-$manager->registerNotifier(function() {
- return new \OCA\Files_Sharing\Notifier(
- \OC::$server->getL10NFactory()
- );
-}, function() use ($l) {
- return [
- 'id' => 'files_sharing',
- 'name' => $l->t('Federated sharing'),
- ];
-});