You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$this->eventDispatcher->dispatchTyped(newCriticalActionPerformedEvent('The group "%s" was given access to the groupfolder with id %d', [$groupId, $folderId]));
712
708
}
713
709
714
710
/**
@@ -730,6 +726,8 @@ public function removeApplicableGroup(int $folderId, string $groupId): void {
730
726
)
731
727
);
732
728
$query->executeStatement();
729
+
730
+
$this->eventDispatcher->dispatchTyped(newCriticalActionPerformedEvent('The group "%s" was revoked access to the groupfolder with id %d', [$groupId, $folderId]));
733
731
}
734
732
735
733
@@ -754,6 +752,8 @@ public function setGroupPermissions(int $folderId, string $groupId, int $permiss
754
752
);
755
753
756
754
$query->executeStatement();
755
+
756
+
$this->eventDispatcher->dispatchTyped(newCriticalActionPerformedEvent('The permissions of group "%s" to the groupfolder with id %d was set to %d', [$groupId, $folderId, $permissions]));
757
757
}
758
758
759
759
/**
@@ -775,6 +775,9 @@ public function setManageACL(int $folderId, string $type, string $id, bool $mana
$this->eventDispatcher->dispatchTyped(newCriticalActionPerformedEvent('The %s "%s" was %s acl management rights to the groupfolder with id %d', [$type, $id, $action, $folderId]));
778
781
}
779
782
780
783
/**
@@ -786,6 +789,8 @@ public function removeFolder(int $folderId): void {
$this->eventDispatcher->dispatchTyped(newCriticalActionPerformedEvent('The quota for groupfolder with id %d was set to %d bytes', [$folderId, $quota]));
801
808
}
802
809
803
810
/**
@@ -810,6 +817,8 @@ public function renameFolder(int $folderId, string $newMountPoint): void {
$this->eventDispatcher->dispatchTyped(newCriticalActionPerformedEvent('Advanced permissions for the groupfolder with id %d was %s', [$folderId, $action]));
0 commit comments