-
Type: Improvement
-
Status: Open
-
Priority: Minor
-
Resolution: Unresolved
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: Default Application Templates, Page Providers
-
Tags:
In Studio, when we import the DAM external template for Nuxeo 10.10 LTS 2019, the page provider assets_search still reference the old way to deal with the deleted state:
ecm:mixinType IN ('Picture', 'Audio', 'Video') AND ecm:isVersion = 0 AND ecm:isProxy=0 AND ecm:currentLifeCycleState != 'deleted'
It should be :
ecm:mixinType IN ('Picture', 'Audio', 'Video') AND ecm:isVersion = 0 AND ecm:isProxy=0 AND ecm:isTrashed = 0