How to get external gadget names in confluence

Bhargavi Vasa
Contributor
August 1, 2024

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

1 answer

0 votes
Tomasz Kowalczyk
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.
August 1, 2024
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

Bhargavi Vasa
Contributor
August 1, 2024

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

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events