Links
Comment on page

Permission Set

The PermissionSet class in the Permissive framework allows you to group multiple permissions together, define an overall title, and manage these sets for better organization and ease of use. This class also provides utility functions for uploading, fetching, and enabling those permissions on accounts.
class PermissionSet {
title: string;
permissions: Permission[];
}
  1. 1.
    title: A human-readable title for the permission set, displayed on the authorization page for better understanding of the purpose and scope of the permissions.
  2. 2.
    permissions: An array of Permission objects that belong to this permission set.