I have confluence linked with jira , looking for gadgets which were part of jira and being linked to confluence as external gadgets
I need SQL to fetch gadget names
Ex: Activity Stream
Assigned to me
select
cu.display_name as Display_Name_Owner,
pp.ID,
pp.PAGENAME as Gadget_Name,
* from portalpage pp
inner join portletconfiguration pc on pp.ID=pc.PORTALPAGE
left join app_user au on au.user_key=pp.USERNAME
left join cwd_user cu on au.lower_user_name = cu.lower_user_name
where pc.GADGET_XML like '%activity%'
I think this might help you
I just need gadget url or name which were taking out from jira
I don't need where it is being used or in which page, just looking for the unique gadgets name
In my jira I have 18 gadgets, I just need those gadgets name from confluence using sql
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.