Hi Folks,
I'm looking for a SIL script where i should able to get list of all dashboards and filters along with shared info
Is this possible?
Thanks,
MVR
Hello!
I think you need the SIL groovy connector. You could create a SIL script like this:
string script = "import com.atlassian.jira.component.ComponentAccessor;" +
"import com.atlassian.jira.portal.PortalPageManager;" +
"import com.atlassian.jira.issue.search.SearchRequestManager;" +
"" +
"def portalManager = ComponentAccessor.getComponent(PortalPageManager.class);" +
"def result = \"\";" +
"portalManager.getAll().foreach({ item -> " +
" item.getPermissions()" +
" " +
"});" +
"" +
"def searchRequestManager = ComponentAccessor.getComponent(SearchRequestManager.class);" +
"searchRequestManager.getAll().foreach({ item -> " +
" item.getPermissions()" +
" " +
"});" +
"return result;" +
"";
executeGroovyScript(script);
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.