@@ -333,11 +333,11 @@ See `org-default-priority' for more info."
333
333
" An alist of plists containing custom fields to add to issues.
334
334
335
335
A sample value might be
336
- ((customfield_10033 . (:type string :location 'headline))
337
- (customfield_10108 . (:type number :location 'property :name \" Priority\" ))).
336
+ ' ((customfield_10033 . (:type string :location 'headline))
337
+ (customfield_10108 . (:type number :location 'property :name \" Priority\" ))).
338
338
339
339
List of properties for each plist:
340
- :type - Required. Type of the field. Defaults are 'string, 'boolean or
340
+ :type - Type of the field (required). Built-in types are 'string, 'boolean or
341
341
'number. You can define custom types inside
342
342
`org-jira-custom-field-encoders' .
343
343
:location - A symbol, either 'property to format the field as an Org
@@ -354,7 +354,7 @@ List of properties for each plist:
354
354
" An alist of plists containing custom field type handlers.
355
355
356
356
A sample value might be
357
- ((multicheckboxes . (:encode #'my-encoder :decode #'my-decoder)))
357
+ ' ((multicheckboxes . (:encode #'my-encoder :decode #'my-decoder)))
358
358
359
359
Encoding functions take a JSON value and return a string.
360
360
Decoding functions take a string and return a JSON value."
@@ -366,6 +366,9 @@ Decoding functions take a string and return a JSON value."
366
366
The car of each element is the org-jira field name.
367
367
The cdr of each element is the Jira issue field ID as returned by the API.
368
368
369
+ This is useful if your organization uses a custom field for the
370
+ issue description or other \" built-in\" field instead of the default.
371
+
369
372
A sample value might be
370
373
'((description . customfield_10000)
371
374
(summary . customfield_10001)
@@ -389,7 +392,6 @@ Valid org-jira fields you can use:
389
392
- status
390
393
- summary
391
394
- issuetype
392
- - issuetype
393
395
- updated"
394
396
:group 'org-jira
395
397
:type '(alist :key-type symbol :value-type symbol))
0 commit comments