In a plugin that implements a new Action, I would like to redirect to the original search filter upon completion

joelfire April 10, 2014

I created a plugin that implements a new action ("create subtasks for versions"). This action creates a number of subtasks for a selected group of versions. Typically a user would use this action from a bug when in a search filter (e.g., "unscheduled")

When the action is complete, I know how to redirect to the bug, but I cannot figure out how to redirect back to the original search filter URL. Is this possible?

2 answers

1 accepted

0 votes
Answer accepted
joelfire April 14, 2014

Got it:

@Override

protected String doPostCreationTasks() throws Exception {
        String rtn = "/browse/" + getOrigIssueKey();
        SearchRequest searchRequest = getSearchRequest();
        if (searchRequest != null) {
            rtn += "?filter=" + searchRequest.getId();
        }
        return returnComplete(rtn);
    }

IssueActionSupport.getSearchRequest is what I needed.

0 votes
Timothy
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 Leaders.
April 13, 2014

Is this possible?

I know that it is possible. I just cannot remember how to get it out of the session. Take a look at the com.atlassian.jira.web.action.issue.IssueNavigator class.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events