...
Starter-kit default config updates
Note |
---|
For existing projects which will not use the new user interface for portal configurations, you should add |
Cursors :
all-videos :
previous value :
Code Block language json { "path": "dam/asset", "max": 60, "staticQuery": { "assetnature": { "dof": { "code":"video" } } }, "orderby": "created desc", "limit": 200, // Should apply asset nature filter from query "haveAssetNature": true }
new value :
Code Block { "path": "dam/asset", "max": 60, "staticQuery": { "assetnature": { "dof": { "code": { "in": ["video"] } } } }, "orderby": "created desc", "limit": 200, // Should apply asset nature filter from query "haveAssetNature": true }
...