Permissions are a way to control the access of your users to your app’s features. They are almost like quotas, but they are not limited by a number. Instead, they are boolean values that can be set to true or false. When attached to a product, all users who subscribe to this product will inherit the permissions attached to it.Documentation Index
Fetch the complete documentation index at: https://docs.kobble.io/llms.txt
Use this file to discover all available pages before exploring further.
Example
For example, if your app allows users to generate videos, you can create a permission calledgenerate-videos.
Then, you can set the permission generate-videos to true for members on the premium plan and false for members on the free plan.
Then from your frontend code, you could display a button to generate videos only if the user has the permission generate-videos set to true.
Example code: