Hi,
I would like to add some images to the JIRA dashboard, preferably as a gadget. I have customized a dashboard and viewing it as a wallboard slide show. It keeps showing all the gadgets one by one which is a very nice feature. This gives a real time status update of the sprint and project progress overall and looks nice in the office so all team members can view it all the time.
I would like to add a gadget in which I can upload the image of the product being worked on. This will just add up to the spice.
Is there any such gadget or plugin? I couldn't find one so asking..
Using JIRA cloud.
Thanks,
Another strange thing is that JIRA deletes attachment files from their source location for unknown reasons.
Seems like the DefaultJiraDataImporter.CreateIssue pays no attention on the contents of the ExternalIssue attachments field and requests attachments from the DataBean. The default implementation of the getAttachmentsForIssue method just returns empty collection. The "real" implementation should return attachments for the issue, like this:
@Override
public Collection<ExternalAttachment> getAttachmentsForIssue(ExternalIssue externalIssue, ImportLogger log)
{
return externalIssue.getAttachments();
}This is really a strange behavior.
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.