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,
I'm looking for a way to determine in code if a block should be included in a collection based on if it is in visitor group.
List blockList = new List();(c.ContentLink);
if (model.CurrentPage.BannerContentArea.Items.Any())
{
foreach (var c in model.CurrentPage.BannerContentArea.Items)
{
var item = contentLoader.Get
// filter based on visitor group
blockList.Add(item);
}
}
HomeBannerBlock[] blocks = blockList.ToArray();
I have multiple blocks in a content area. Looking for a way to filter out personalised blocks if not required.