Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
74:jira_feedback [2019/09/25 09:37] fnpk74:jira_feedback [2019/10/11 07:36] fnpk
Line 44: Line 44:
       - The "type" defines if the field is a multi-line text ("text") or a single line string ("string").       - The "type" defines if the field is a multi-line text ("text") or a single line string ("string").
       - The "target" defines the id of the custom field in Jira (e.g. "customfield_10101").       - The "target" defines the id of the custom field in Jira (e.g. "customfield_10101").
 +      - Optional: The targetType defines the type of the Jira field. Supported Jira fields see below.
       -->       -->
       <attributes>       <attributes>
Line 75: Line 76:
 </code> </code>
  
-=== Custom Endpoint ===+=== Supported Jira fields ===
 +  * Description: ''targetType=""'' (Empty) 
 +  * Text Field (single line): ''targetType=""'' (Empty) 
 +  * Text Field (multi line): ''targetType=""'' (Empty) 
 +  * Select List (single choice): ''targetType="selectList-singleChoice"'' 
 +  * Components: ''targetType="components"''
  
-If your Jira REST-Endpiont differs from the standard location, you can specify it. If your link to the Jira-API is for example like ''%%https://api.example.com/example/api/2/issue%%'' then you have to specify ''%%https://api.example.com/example/%%'' as value for this property.+Other Jira fields are not supported at the moment. 
 + 
 +=== Custom Endpoint ===
  
 +If your Jira REST-Endpiont differs from the standard location, you can specify it. If your link to the Jira-API is for example like ''<nowiki>https://api.example.com/example/api/2/issue</nowiki>'' then you have to specify ''<nowiki>https://api.example.com/example/</nowiki>'' as value for this property.
 <code xml> <code xml>
 <property name="jira.rest.endpoint" value="https://api.example.com/example/" /> <property name="jira.rest.endpoint" value="https://api.example.com/example/" />