in a project, I need to have two separate users:
1) an organisation that can create content
2) a simple user that can use content created by organisations
I've separated my workflows in two bundles, let's say PublicBundle and OrgaBundle and both can be accessed using Symfony's host routing (one from example.com and the other from orga.example.com).
Both users need to be logged in to create or use content. Once logged in, users or organisations can access their workflow pages.
So here are my questions: How can you create these two user entities, with their login / register form? Is it possible to do that with FOSUserBundle?
Thanks!
Cyril