Henrik Gemal
Henrik Gemal

Reputation: 95

Can you easy structure company - groups - users - permissions in symfony

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

Answers (1)

goto
goto

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

Related Questions