diff options
author | Morris Jobke <hey@morrisjobke.de> | 2020-07-23 21:42:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-23 21:42:48 +0200 |
commit | ce314d948464321bb2fced0941a6345267a40f35 (patch) | |
tree | f94f6e801708ccc877dd7822f1adf68abb14225d /apps/files_sharing/lib/AppInfo/Application.php | |
parent | a169bd243ff4b014fa4238845dbebbbc2a4d1021 (diff) | |
parent | 0763a173321488acaadceb1eb0ecf1ec8691bf21 (diff) | |
download | nextcloud-server-ce314d948464321bb2fced0941a6345267a40f35.tar.gz nextcloud-server-ce314d948464321bb2fced0941a6345267a40f35.zip |
Merge pull request #21814 from nextcloud/techdebt/noid/federated_share_added-into-typed-event
Move federated_share_added into a typed event
Diffstat (limited to 'apps/files_sharing/lib/AppInfo/Application.php')
-rw-r--r-- | apps/files_sharing/lib/AppInfo/Application.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files_sharing/lib/AppInfo/Application.php b/apps/files_sharing/lib/AppInfo/Application.php index 1b1bd08d3fd..6448d0fab4d 100644 --- a/apps/files_sharing/lib/AppInfo/Application.php +++ b/apps/files_sharing/lib/AppInfo/Application.php @@ -94,7 +94,8 @@ class Application extends App { $server->getCloudFederationFactory(), $server->getGroupManager(), $server->getUserManager(), - $uid + $uid, + $server->query(IEventDispatcher::class) ); }); |