Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Can script runner be used to show an icon (top right - next to three dots) if a page has inline comments?

Vijay Patil January 11, 2017

I don't see any obvious ways to quickly see if a page has inline comments and I wonder if an icon can be shown if it does have inline comments?

When the icon is clicked it will naviagate to the first comment.

1 answer

1 accepted

4 votes
Answer accepted
Rafael Franco
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.
January 11, 2017

Hi Vijay,

My name is Rafael Franco and I'm the Tech Lead for the Product Team here at Adaptavist. Thanks for using ScriptRunner for Confluence.

Definitely ScriptRunner for Confluence can help you with that. I would suggest you use a Script Fragment and in that fragment you can fetch the inline comments by:

final List<Comment> comments = commentManager.getPageComments(pageId, new Date(0));
final List<Comment> inlineComments = new ArrayList<Comment>();
for (final Comment comment : comments)
{
    if (comment.isInlineComment())
    {
        inlineComments.add(comment);
    }
    /* More over, you can check the status of an inline comment by doing something like this:    
        comment.getStatus().isDangling()
        comment.getStatus().isOpen()
        comment.getStatus().isResolved()
        comment.getStatus().isReopened()
    */
}

Let me know if it helps.

Rafael

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events