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]));
697
693
}
698
694
699
695
/**
@@ -715,6 +711,8 @@ public function removeApplicableGroup(int $folderId, string $groupId): void {
715
711
)
716
712
);
717
713
$query->executeStatement();
714
+
715
+
$this->eventDispatcher->dispatchTyped(newCriticalActionPerformedEvent('The group "%s" was revoked access to the groupfolder with id %d', [$groupId, $folderId]));
718
716
}
719
717
720
718
@@ -739,6 +737,8 @@ public function setGroupPermissions(int $folderId, string $groupId, int $permiss
739
737
);
740
738
741
739
$query->executeStatement();
740
+
741
+
$this->eventDispatcher->dispatchTyped(newCriticalActionPerformedEvent('The permissions of group "%s" to the groupfolder with id %d was set to %d', [$groupId, $folderId, $permissions]));
742
742
}
743
743
744
744
/**
@@ -760,6 +760,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]));
763
766
}
764
767
765
768
/**
@@ -771,6 +774,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]));
786
793
}
787
794
788
795
/**
@@ -795,6 +802,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