A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
AI OnAI Off
A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
Hi,
Is it possible to create a custom view for on-page editing of images (and other media files) in the same way as it is for blocks?
eg.
[TemplateDescriptor(Inherited = true,
Tags = new [] { RenderingTags.Preview },
TemplateTypeCategory = TemplateTypeCategories.MvcController)]
public class PreviewBlockController : ActionControllerBase, IRenderTemplate
{
public ActionResult Index(BlockData currentBlock)
{
return View(currentBlock);
}
}
Iv' tried but nothing is rendered.
/Anders