Note
We've packed up and moved from Confluence to Discourse to bring you a better, more interactive space. Out of courtesy we didn't migrate your user account so - you will have to signup again
The Exalate team will be on holiday for the coming days - returning Jan 4
Enjoy & stay safe
Hi.
I'm trying to merge last/latest comment & all the attachments on that comment from ZD to JIRA. For that I think I need the attachment created timestamp so I can compare that to comment timestamp.
Or is there a better way to catch all the attachments of a single comment?
Looking at JIRA remote replica, I can't find attachment created timestamp.
According to https://docs.idalko.com/exalate/display/ED/Attachments should there be a timestamp?
Here's the JIRA remote replica attachments & comments from ZD:
{
"version": {
"major": 1,
"minor": 15,
"patch": 0
},
"hubIssue": {
"components": [],
"attachments": [
{
"id": "369197845598",
"mimetype": "image/png",
"filename": "inline-453156139.png",
"filesize": 927,
"internal": false,
"zip": false
},
{
"id": "369242875237",
"mimetype": "image/png",
"filename": "image.png",
"filesize": 4009,
"internal": true,
"zip": false
},
{
"id": "369242886377",
"mimetype": "text/plain",
"filename": "test.txt",
"filesize": 58080,
"internal": true,
"zip": false
},
{
"id": "369197873058",
"mimetype": "image/png",
"filename": "image.png",
"filesize": 1762,
"internal": true,
"zip": false
}
],
"description": "test",
"watchers": [],
"fixVersions": [],
"key": "860",
"summary": "testing 4.5",
"comments": [
{
"id": "782263108038",
"author": {
"key": "398349362114",
"active": false,
"email": "xxx",
"displayName": "xxx",
"username": "xxx"
},
"body": "xxx",
"created": 1614775537000,
"internal": true,
"restrictSync": false
},
{
"id": "782263552298",
"author": {
"key": "398349362114",
"active": false,
"email": "xxx",
"displayName": "xxx",
"username": "xxx"
},
"body": "xxx2",
"created": 1614775574000,
"internal": true,
"restrictSync": false
}
],
...
It is a bit unclear what exactly you would like to achieve.
Send over all the attachments contained in a comment?
Hi.
Yes, just the latest comment and all the attachments contained on it.
ZD agents might do internal commenting/notes before escalating to JIRA and we don't want those comments & attachments to JIRA. Just the last comment & all the attachements on that comment.
I can successfully take the last comment and last attachment but if the last comment contains 2+ attachments, I can't tell which attachment is linked to last comment.
An approach would be to scan the last comment for attachments and add these attachments to the replica?