The jira:globalPermission
module allows you to define custom global permissions for Jira.
Global permissions are not related to any particular entity and are useful if you need to manage permissions for operations performed on global objects.
A custom global permission behaves as any other Jira permission. Administrators may manage it in the UI and your add-on can access it through REST APIs.
The format of the permission key is: ari:cloud:ecosystem::extension/[App ID]/[Environment ID]/static/[Permission key]
.
Note that there is a similar module for project permissions.
Property | Type | Required | Description |
---|---|---|---|
key |
| Yes | A key for the module, which other modules can refer to. Must be unique within the manifest. Regex: |
name | string or i18n object | Yes |
The name of the permission. The |
description | string or i18n object | Yes |
Description of the global permission. It will be displayed under the permission's name. The |
anonymousAllowed | boolean | Yes | Specifies if this permission can be granted to anonymous users. |
defaultGrants | string | Specifies the group of users that will be granted this permissions when the add-on is first installed. Please note that existing permission configuration won't be overwritten during add-on upgrades or re-installations. Allowed values:
|
Internationalization (i18n) for Forge apps is now available through Forge's Early Access Program (EAP). For details on how to sign up for the EAP, see the changelog announcement.
EAPs are offered to selected users for testing and feedback purposes. APIs and features under EAP are unsupported and subject to change without notice. APIs and features under EAP are not recommended for use in production environments.
For more details, see Forge EAP, Preview, and GA.
Key | Type | Required | Description |
---|---|---|---|
i18n | string | Yes | A key referencing a translated string in the translation files. For more details, see Translations. |
1 2modules: jira:globalPermission: - key: "forge-global-permission" name: "Forge global permission" description: "Forge custom global permission" anonymousAllowed: false defaultGrants: - "all"
Rate this page: