Now Jirasupport is MrAddon!

Good morning Jira addicts! 🙂 It’s an enormous pleasure for me to present my new company based on Barcelona, called MrAddon. In this company, we will provide IT solutions based in the main Atlassian components and services like JIRA, Confluence, Bitbucket, HipChat, Crowd,etc. and the most famous JIRA plugins like Tempo Timesheets,  Adaptavist ScriptRunner, Moresimp…

Read More

Permissions based on Workflow Status in JIRA

In the Workflow transition properties you can set diverse permissions restrictions like this: jira.permission.comment.group=group jira.permission.comment.denied=true/false jira.permission.edit.group.1=group1 jira.permission.edit.group.2=group2 jira.permission.modifyreporter.user=username jira.permission.delete.projectrole=10000 jira.permission.subtasks.delete.projectrole=10000 jira.permission.close.user=username jira.issue.editable=false … You can see more permissions and terminology in this link  

Read More

JIRA JQL trick: Filter issues based on transition state execution date in JIRA

Very easy, see the JQL example: Project = “JIRA” AND Status CHANGED TO “In Progress” DURING (“2015/08/01″,”2015/10/05”) Other Syntax: This JQL shows all issues which have been in “Status A” for more than 14 days project=XXX and status changed to “Status A” before startofday(-14) and status = “Status A” This JQL shows all issues which…

Read More