Summary
I want to display a red message "Private" on images as a thumbnail overlay (thumbnail pattern on file type images) when no permission sets are assigned.
{% if permissionSetIds.size == 0 %}
< font color = "#ff5576" >
Private
</ font >
{% endif %}
JSON
Field Value Access
permissionSetIds
permissionSetIds.size
Use Case
I want to display a red message "Private" as a thumbnail overlay when no permission sets are assigned.
I have to change the thumbnail pattern for ImageMetadata (File Types/FileMetadata/ImageMetadata) because these are then all images.
Thumbnail overlays are Display Pattern Thumbnails on File Types.
I have to check for the number of permissionSetIds assigned, which I can do by adding .size.
Steps
Open File Type > ImageMetadata (File Types/FileMetadata/ImageMetadata)
Update the Thumbnail Display Pattern
Check for Permission Sets and add text with CSS font color red.
{% if permissionSetIds.size == 0 %}
< font color = "#ff5576" >
Private
</ font >
{% endif %}
CODE