You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Would it be possible to add a feature that allows the user to delete multiple attachments in one go through the 'Manage Attachments' feature?
We regularly update a JIRA issue by sending emails to it (great feature!) and are finding that our issues are getting cluttered with email signature logos. Deleting each logo individually results in a notification emails being repeatedly sent to viewers which is causing a lot of frustrations.
Alternatively (or in addition), the issue could be resolved by configuring JIRA not to attach any email attachments to an issue which would necessitate the user to manually attach the file if required.
Both approaches have a pros and cons and might be useful depending on how the system is being used.
Hi Francois,
There's an improvement request for this already. It's filed at https://jira.atlassian.com/browse/JRA-22180.
-- Pedro
Hello, community.
You can try our add-on Smart Attachments. It allows you to delete a group of attachments at once and has many more features. You can download it from https://marketplace.atlassian.com/plugins/com.stiltsoft.jira.smart-attachments.
Thanks.
Best Regards,
Vadim Rutkevich
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Since the bulk deletion issue is open since 2006 and no end in sight, and I had to delete 200 attachments, I did the following:
Paste:
while (true) { $('.attachment-delete a').first().click(); await new Promise(resolve => setTimeout(resolve, 3000));}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks, that was helpful for my 80+ that attached themselves I swear without me doing it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In case someone finds themselves here from a google search. Here's my modified version that also clicks the confirmation button and "file no longer exists" error that sometimes pops up.
while (true)
{
if ($("#delete-attachment-submit").length)
{
$("#delete-attachment-submit").first().click();
await new Promise(resolve => setTimeout(resolve, 5000));
}
else if ($("#aui-dialog-close").length)
{
$("#aui-dialog-close").first().click()
await new Promise(resolve => setTimeout(resolve, 5000));
}
else
{
$('.attachment-delete a').first().click();
await new Promise(resolve => setTimeout(resolve, 5000));
}
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Francois!
Please try Delete Bulk Attachments for Jira. No need to wait for request completion. The app is completely free. You can get more bulk operations in Smart Attachments for Jira.
Thanks.
Sincerely, Vadim
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.