You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, Unkey allows creating permissions one at a time, which can be time-consuming for larger projects. In real-world applications, permissions often follow a structured naming convention that can be generated dynamically, for example:
<entity>.<action>.<scope>
Examples:
user.create.owner
user.delete.owner
user.update.owner
To streamline permission management, it would be highly beneficial if Unkey supports either of the following:
Bulk Permission Creation: Ability to input multiple permissions at once using a comma-separated format.
JSON Import Support: Option to import permissions as a JSON array for easier permission creation. The JSON format could look like this:
[
{ "name": "user.create.owner", "description": "Allows public creation of users" },
{ "name": "user.delete.owner", "description": "Allows deletion of products with private access" }
]
These features would allow for faster permission setup.
Provide proof that you've completed the task
None
The text was updated successfully, but these errors were encountered:
What side quest or challenge are you solving?
Accessibility Advocate
Points
50 - 300
Description
Currently, Unkey allows creating permissions one at a time, which can be time-consuming for larger projects. In real-world applications, permissions often follow a structured naming convention that can be generated dynamically, for example:
Examples:
user.create.owner
user.delete.owner
user.update.owner
To streamline permission management, it would be highly beneficial if Unkey supports either of the following:
Bulk Permission Creation: Ability to input multiple permissions at once using a comma-separated format.
JSON Import Support: Option to import permissions as a JSON array for easier permission creation. The JSON format could look like this:
These features would allow for faster permission setup.
Provide proof that you've completed the task
None
The text was updated successfully, but these errors were encountered: