Learn how to make user group abstractions to manage permissions at scale.
User groups in Fine-Grained Authorization (FGA) allow you to manage permissions at scale by grouping users and granting access to those groups. This is particularly useful in large organizations where managing individual user permissions can become cumbersome.
You should consider using user groups in the following scenarios:
Management groups can be applied in various scenarios, including:
version 0.3 type user type organization relation admin [user] relation document_viewer [user] relation document_manager [user] inherit document_manager if relation admin // admins are also document managers inherit document_viewer if relation document_manager // document managers are also viewers type document // A document has a parent organization relation parent [organization] relation edit [user] relation view [user] // Allow users to edit the document if they // are in the document manager group on the organization that owns it inherit edit if relation document_manager on parent [organization] // Allow users to view the document if they // are in the document viewer group on the organization that owns it inherit view if relation document_viewer on parent [organization]