Hi,
Is a possible to create Space Shortcuts in the sidebar programmatically without creating a app, for example using Scriptrunner or another app?
Best regards
Brian
Hi Brian,
I believe you can use ScriptRunner to achive this. Please find a sample script below running from Script Console:
import com.onresolve.scriptrunner.runner.customisers.PluginModule import com.onresolve.scriptrunner.runner.customisers.WithPlugin import com.atlassian.confluence.plugins.ia.service.SidebarLinkService @WithPlugin('com.atlassian.confluence.plugins.confluence-space-ia') @PluginModule SidebarLinkService sidebarLinkService sidebarLinkService.create('MTC', null, 'Google Link', 'https://www.google.com/')// sidebarLinkService.create('<SPACE_KEY>', null, '<Link_TITLE>', '<LINK_URL>')
On the above, you would need to pass couple of item which is:
If you have further query do let me know.
Regards,
Amirul
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.