Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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 "useServerConfigResolution": false, on all the used configs of your wediaportal_rc file.

Starter-kit default config updates

Cursors :

all-videos :

  • previous value :

    Code Block
    languagejson
    {
      "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
    }

...