...
Ind the previous version assets was automatically indexed. This is no longer the case, assets wont be index out of the box. Follow this guide to ass addets to the index DFO 4.0.0 - 8 Indexing Assets with Optimizely Find.
Blob mapping
Extending Digizuite media content types and adding cutstom blobs has changed from using guid to use mediaFormatId. In this example the attribute class DigizuiteMediaFormat
uses the guid. See DFO 4.0.0 - 2 Modelling Asset Content Types
Code Block |
---|
[ScaffoldColumn(false)]
[DigizuiteMediaFormat("ImageSmall", "3C95F58F-5DD7-4AFB-B1C8-48E05901CE6D")]
public virtual Blob Small { get; set; } |
Must be changed to.
Code Block |
---|
[ScaffoldColumn(false)]
[DigizuiteMediaFormat("ImageSmall", 50036)]
public virtual Blob Small { get; set; } |