...
https://crossmedia.atlassian.net/wiki/spaces/WD/pages/2098430016/Homepage#Search-bar-area.1
...
Wediaportal_rc
Note |
---|
For existing projects which will not use the new user interface for portal configurations, you should add |
Starter-kit default config updates
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 }
...