Symfony2 Group permissions with ACL

Viewed 3624

Where I work we are designing a webapp in which users may belong to multiple groups and each group has access on a set of resources not known in advanced. Plus, users can enter or leave groups and groups can acquire or lose access to resources, so the whole permission granting system needs to be dynamic.

We are using Symfony2 and the FOSUserBundle.

We like how the ACL system works, but we could not find a way to apply it to the Group object.

Has anyone done something like that with Symfony? Or do you have any suggestion on how to implement it in other ways?

1 Answers
Related