Hi,
I'm configuring a new team of 8 on Microsoft Teams and I want to integrate Jira server app on Microsoft Teams. Each time i try to connect, I'm being prompted for a server ID which I'm unable to find.
Can you help? where can i find the server ID to upload onto Mircosoft Teams?
Thanks
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.
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.
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.