Abstract

This code snippet checks the visibility of the comment added on the transition screen

Logic

Access the entity property which indicates the visibility of the comment.

Snippet

import groovy.json.JsonParserType
import groovy.json.JsonSlurper

def commentProperties = transientVars["commentProperty"] as String[]
def isInternalComment = false
if (commentProperties) {
    def commentProperty = commentProperties.first()
    def props = new JsonSlurper().setType(JsonParserType.LAX).parseText(commentProperty)

    isInternalComment = props.find { it.key == "sd.public.comment" }?.get("value")?.get("internal")
}
return isInternalComment.toBoolean()

Placeholders

NA

Examples

The output of this code is a boolean value that can be used to control the execution of a post-function or a validator. For example,

References

Related articles