Streamline Your Authorization Workflow with Auth0 FGA

HI Firas,

I think we discussed this in Discord too, but the way we recommend handling multi tenancy is to model that in the model itself, e.g.

type user
type organization
relations
define member : [user]
type resource
relations
define organization : [organization]
define can_access: member from organization

In that way, members can only access resources from their own organization.