You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
I use 'Label Add Event', and I need to get the page id.
How can I do it in 'event listeners'?
I have Confluence version 6.13.8
Tnx,
Daniel
Hi Daniel!
You can get the Id of the page the label is being added to by first getting the Labellable object from the Label event and then casting it as a Page. The page Id can then be retrieved from with the getContentId() method.
I've added a code snippet below that shows this in action!
import com.atlassian.confluence.pages.Page
def page = event.getLabelled() as Page
log.warn page.getContentId()
I hope this helps!
Thanks,
Lee
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Daniel,
As you're listening for multiple events you will need to cast the provided event to the particular event you wish to take action on.
So, in this case, you will need to do the following:
import com.atlassian.confluence.pages.Page
import com.atlassian.confluence.event.events.label.LabelAddEvent
def labelEvent = event as LabelAddEvent
def page = labelEvent.getLabelled() as Page
log.warn page.getContentId()
I'd also recommend separating the events you are listening for into individual listeners as this will make them simpler to implement and maintain your code.
Thanks,
Lee
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you, It worked and I caugth the event and the page id!
Bug now I am handeling with a different problem with this script:
Can you help me with it please?
Daniel
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello everyone, I am a product manager in the Jira Cloud team focused on making sure our customers have a delightful experience using our products. Towards that goal, one of the areas which is extr...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.