Do I need Multi Tenancy?
HI all,
I want to build application where admin can add Client/Organisation.
Each user can be part of just ONE Client/Organisation
Application main features:
Admin portal
- Manage Client/Org. and users
- Manage shared resources
- User impersonate
Client/Org portal
- Manage users and permissions
- Manage resources for this Org
- Use API based on token/key ( one key for Client/Org )
Question is, do I need multi tenancy with
HasTenants
or it should be implemented with something else?
Thanks in advance!3 Replies
in your case for the tenancy part adding
team_id
or some similar column should be enoughAs above, but if you ever have a possible plan to have more than 1 user per tenant/org then it makes sense to start of with multi-tennacy from day 1.
Hi, thank you for the answer.
This is what I thought, just wanted to confirm with someone who is experienced with filament.