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
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.