Overview
Minyaa Core Edition comes with some REST APIs (Minyaa Core Gadgets plugin).
Upgrade Task Execution
Due to deprecation of Jelly in JIRA, features of some of them have to be now provided by an alternative solution. The REST API has been choosen.
/rest/minyaaCore/1.0/upgrade/task?pluginKey={pluginKey}&moduleKey={moduleKey}
Description | Execute a Upgrade Task |
Method | GET |
Content-Type | application/json |
Parameters |
Parameter | From | Values | Descriptions |
pluginKey | QueryParam | string | Key of plugin that provides the related Upgrade Task |
moduleKey | QueryParam | string | Key of module that relates to the Upgrade Task |
|
HTTP 200 Return | A JSON UpgradeTaskBean is returned :
{
"className":"com.minyaa.upgrade.tasks.MinyaaCoreUpgradeTask_007",
"buildNumber":"7",
"shortDescription":"Migrate Workflows for Extended Permissions",
"errors":[]
}
Properties | Values | Descriptions |
className | string | FQCN of the Upgrade Task |
buildNumber | string | Upgrade Build Number in its plugin |
shortDescription | string | A Short description |
errors | string[] | List of encountered errors |
|