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/10/11 07:25] fnpk74:jira_feedback [2019/10/11 07:39] 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 51: Line 52:
         <attribute ident="annual_savings" type="string" target="customfield_10100" />         <attribute ident="annual_savings" type="string" target="customfield_10100" />
         <attribute ident="priority" type="string" target="customfield_10101" />         <attribute ident="priority" type="string" target="customfield_10101" />
 +        <attribute ident="component" type="string" target="components" targetType="components" />
         -->         -->
       </attributes>       </attributes>
Line 62: Line 64:
       - creatorUsername "jdoe"       - creatorUsername "jdoe"
       The "target" defines the id for the custom field in Jira (e.g. "customfield_10101").       The "target" defines the id for the custom field in Jira (e.g. "customfield_10101").
 +      Optional: The targetType defines the type of the Jira field. Supported Jira fields see below.
       -->       -->
       <system-attribute-mappings>       <system-attribute-mappings>
Line 74: Line 77:
 </stages-config> </stages-config>
 </code> </code>
 +
 +=== 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"''
 +
 +Other Jira fields are not supported at the moment.
  
 === Custom Endpoint === === Custom Endpoint ===