Can We add any Predefined Downloadable Templates File to Attachment Field?(For JIRA Cloud Version)

Peddiboyina Nagendrababu December 3, 2018

Hi,

 

We want to add Predefined Downloadable Templates File to Attachment Field .So that users can download their Required File From the Attachment field on the View Screen and can fill their details and re attached to the attachment field which saves a lot of time.

 

Best,

P Nagendra Babu

1 answer

1 vote
Alexey Matveev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
December 3, 2018

Hello,

You would need an add-on for it.

For example you could use the Power Scripts add-on:

https://marketplace.atlassian.com/apps/43318/power-scripts-jira-script-automation?hosting=cloud&tab=overview

You could write a listener on the Create issue event with a code like this:

string path_to_file;string issue;

path_to_file = "C:/jira/home/attachment/file_to_attach_1.jpg";

issue = "PRJ-239";

attachFile(path_to_file, issue);

In this case after an issue has been created, it will have a file attached to this issue. A user can download it, fill it and attach back.

You can read more info about listeners here:

https://confluence.cprime.io/pages/viewpage.action?pageId=6558205

Suggest an answer

Log in or Sign up to answer