PluggableApplicationOrganizationPermission
Home > @gooddata/sdk-model > PluggableApplicationOrganizationPermission
PluggableApplicationOrganizationPermission type
This API is provided as an alpha preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Organization permission keys supported by the pluggable application manifest.
These map directly to the Tiger backend organization permission levels.
Signature:
export type PluggableApplicationOrganizationPermission =
/**
* Whether the user can manage the organization (settings, users, etc.).
* Maps to Tiger `MANAGE` permission.
*/
"canManageOrganization"
/**
* Whether the user can create API tokens.
* Maps to Tiger `SELF_CREATE_TOKEN` permission.
*/
| "canCreateDevToken"
/**
* Whether the user has access to the base UI.
* Maps to Tiger `BASE_UI_ACCESS` permission.
*/
| "hasBaseUiAccess";