Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How can I allow a user to login to the billing console without requiring a JIRA/Confluence license?

Luke Goodsell
January 2, 2017

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

1 answer

0 votes
Mizan
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
March 13, 2012

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();
}

Mateusz Jedynak
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
March 14, 2012

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...

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events