Reputation: 95
If I need to build a site where I need to be able to create multiple companies and each company can have multiple groups of users Groups can then have permissions
So a user that belongs to "publisher" group in companyA does not have access to same things and "publisher" group in companyB
I wonder if that is built into symfony?
Upvotes: 0
Views: 51
Reputation: 8162
It's all in the cookbook ;)
You can use voters or the more complex ACL.
With voters, you can call a service wich will contain the business logic of yours
Upvotes: 1