November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
Not 100% but I think you need to wait for future Epi versions to be able to do that.
I solved this issue by creating a new base controller to be used instead of BlockController:
public abstract class AsyncBlockController<TContentData> : ActionControllerBase, IRenderTemplate<TContentData> where TContentData : IContentData { public abstract Task<ActionResult> Index(TContentData currentContent); }
Hi,
I need the Index method of my blockcontroller to be async but since the base class already has a Index method that is sync this seems impossible. Anyone an idea how to fix this?
The end result I'm looking for will be something like this: