security-acl
security-acl copied to clipboard
Symfony Security ACL Component
There is a check in constructor of Symfony\Component\Security\Acl\Domain: if ($role instanceof Role) { $role = $role->getRole(); } I think it is better to check on Symfony\Component\Security\Core\Role\RoleInterface instead of Symfony\Component\Security\Core\Role\Role class...
Recently I started to look at ACL tables and noticed that all the existing entries are still there even after deleting objects or security identities. So I looked up and...
Fixes https://github.com/symfony/security-acl/issues/114 by providing the correct method signature, depending on the loaded `symfony/security-core` version. Might close: #112 #115 #114
In the Symfony 7 security bundle the VoterInterface::vote method signature has changed and this causes the following incompatibility error in AclVoter class: Declaration of Symfony\Component\Security\Acl\Voter\AclVoter::vote(Symfony\Component\Security\Core\Authentication\Token\TokenInterface $token, $subject, array $attributes) must...
This fixes the Declaration incompatibility error in AclVoter class.
We need to add a return type to the component's voter class. I'd like to take the opportunity and plan a 4.0 release that kicks out some legacy and adds...
I am sorry, this is likely a question than an issue report. An answer will actually help me to understand things. On several places like this, https://github.com/symfony/security-acl/blob/f24881ebade00b4f186df2828b22f6ecf5045866/Dbal/MutableAclProvider.php#L563 there is the...
Hello, Here is our scenario that break our acl workflow when we want to add another mask entry for an user. We have a flow that let our admin user...
Call to Table::addForeignKeyConstraint now expects only a string for the table argument, so ensure we send table name instead of Table object.