Hi All,
How can I disable DAM Update Asset workflow for a specific path?
My requirement is, whenever I upload or modify any files under my asset path (/content/dam/myproject/) the default DAM Update Asset workflow should not be launched automatically.
Regards
Denny
Solved! Go to Solution.
Hi Denny,
You can achieve this by modifying existing launcher of dam "Update Assest Workflow".
Open http://localhost:4502/libs/cq/workflow/content/console.html -- go to -> Launcher Tab and search for DAM Update assest.
Edit configuration and update path filed with /content/dam(?!/myproject).*/renditions/original
/Brijesh Yadav
Views
Replies
Total Likes
Hi Denny,
You can achieve this by modifying existing launcher of dam "Update Assest Workflow".
Open http://localhost:4502/libs/cq/workflow/content/console.html -- go to -> Launcher Tab and search for DAM Update assest.
Edit configuration and update path filed with /content/dam(?!/myproject).*/renditions/original
/Brijesh Yadav
Views
Replies
Total Likes
Thank you for the great answer!
Thank you. It works..
Views
Replies
Total Likes
How to disable for 2 path ?
for example I have to disable myproject as well as mytest folder.?
Views
Replies
Total Likes
Hi @azhare3977562
You can add as many as path you want ,
Regular expression for your question would be like below
/content/dam(?!/myproject )(?!/mytest ).*/renditions/original
/Brijesh Yadav