Mobile Device Management (MDM) - Portal App
Mobility for Jira supports the AppConfig standard for Mobile Device Management. This is supported by several MDM systems such as Microsoft Intune, MobileIron, JAMF, AirWatch, etc. With this standard you can control some security features and push out settings to your Mobility for Jira users.
Example configuration:
<dict>
<key>VERSION</key>
<integer>1</integer>
<key>ADD_ACCOUNT</key>
<true/>
<key>ACCOUNTS</key>
<array>
<dict>
<key>UID</key>
<string>account_1</string>
<key>URL</key>
<string>https://jira.yourorganization.com</string>
<key>CAN_DELETE</key>
<false/>
</dict>
<dict>
<key>UID</key>
<string>account_2</string>
<key>URL</key>
<string>https://jira.yourorganization.com</string>
<key>CAN_DELETE</key>
<true/>
</dict>
</array>
</dict>
VERSION
: integer - integer value that represents version of configuration. When value changes clients will remove all previously created accounts and will create new accounts from configuration.
ADD_ACCOUNT
: bool - if value is set to false
users will not be able to add account on their own. Only accounts provided by this configuration will be available for them. Default value: true
.
ACCOUNTS
: array - list of pre-configured account. Element type: dict
Account configuration has the following structure:
UID
: string (required) - unique identifier of account. If value is missing, account with this configuration will not be created.
URL
: string (required) - Jira URL. If value is missing, account with this configuration will not be created.
CAN_DELETE
: bool - if value is true
, user will be able to use swipe to delete for the account. Default value: false
.