Labels

Labels are a good way to categorize a user to grant them access to resources. For example, a subscriber label can be added to a user once they've purchased a subscription.

This would correspond with the permissions below.

DescriptionCode Snippet
Read
Permissions.read(Role.label('subscriber'))
Update
Permissions.update(Role.label('subscriber'))
Delete
Permissions.delete(Role.label('subscriber'))
Create
Permissions.create(Role.label('subscriber'))

Learn more about permissions