Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

Launcher for when assets approved?

Avatar

Level 2

I was wondering if there's an easy way to create a launcher that would launch when dam:status=approved is set on an asset. I want to have the asset publish to Scene7 once it's approved using the Create Review Task.

I'm assuming it would involve creating a launcher with these settings:

  • Event Type: Node modified
  • Nodetype: nt:file
  • Globbing: /content/dam(/.*/)renditions/original
  • Condition: dam:status=='approved' (should approved be in quotes?)
  • Workflow: Scene7
1 Accepted Solution

Avatar

Correct answer by
Level 4

Yes it should work. Property dam:status is on metadata node, hence

path = /content/dam(/.*)/jcr:content/metadata

nodeType = nt:unstructured

Condition: dam:status==approved (without quotes)

View solution in original post

1 Reply

Avatar

Correct answer by
Level 4

Yes it should work. Property dam:status is on metadata node, hence

path = /content/dam(/.*)/jcr:content/metadata

nodeType = nt:unstructured

Condition: dam:status==approved (without quotes)