diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-02-06 20:35:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-06 20:35:50 +0100 |
commit | 730af0013258976dbe5664347eeecd074e5eb440 (patch) | |
tree | 44fc4eceb4bf27217540fc4461b84225244e094e | |
parent | 2fb9103a56f79973c363526d0304ee8319ca67f1 (diff) | |
parent | 7b7db699e9d54da61eea9b62f97fea278cb0499e (diff) | |
download | nextcloud-server-730af0013258976dbe5664347eeecd074e5eb440.tar.gz nextcloud-server-730af0013258976dbe5664347eeecd074e5eb440.zip |
Merge pull request #19236 from tflores/issue_18866
Issue 18866
-rw-r--r-- | apps/admin_audit/lib/AppInfo/Application.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/admin_audit/lib/AppInfo/Application.php b/apps/admin_audit/lib/AppInfo/Application.php index 44d713f7df0..6d7eff012f0 100644 --- a/apps/admin_audit/lib/AppInfo/Application.php +++ b/apps/admin_audit/lib/AppInfo/Application.php @@ -134,6 +134,7 @@ class Application extends App { Util::connectHook(Share::class, 'post_shared', $shareActions, 'shared'); Util::connectHook(Share::class, 'post_unshare', $shareActions, 'unshare'); + Util::connectHook(Share::class, 'post_unshareFromSelf', $shareActions, 'unshare'); Util::connectHook(Share::class, 'post_update_permissions', $shareActions, 'updatePermissions'); Util::connectHook(Share::class, 'post_update_password', $shareActions, 'updatePassword'); Util::connectHook(Share::class, 'post_set_expiration_date', $shareActions, 'updateExpirationDate'); |