Hi,
I am operating a JIRA/Confluence Cloud instance and have 5 people that need to use JIRA/Confluence and 1 more who needs to be able to perform billing operations, but not to access JIRA/Confluence. How can I allow the billing contact to login to the dashboard, view and download invoices and amend billing information without requiring a JIRA/Confluence license?
Kind regards,
Luke
Have done something similar here . below is my method which does auto-transition for Jira 4.3.
private void postCreationTasks() {
MutableIssue issue1=getIssueObject();
final String remoteuser=ComponentManager.getInstance().getJiraAuthenticationContext().getUser().getName();
WorkflowTransitionUtil workflowTransitionUtil = ( WorkflowTransitionUtil ) JiraUtils.loadComponent( WorkflowTransitionUtilImpl.class );
workflowTransitionUtil.setIssue(issue1);
workflowTransitionUtil.setUsername(remoteuser);
workflowTransitionUtil.setAction(5);
workflowTransitionUtil.progress();
}
I've done it the same way, infortunetly in my case, i'm trying to move other issue than i'm operating on, when i'm progressing it, it's changing it's fields values, but the status is still the same... i've got really no idea what it could be...
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.