Open
Description
It would be nice, for Content implementing IBlockContent, to be able to restrict the usable Blocks, as is implemented for Pages and Posts via the BlockItemTypeAttribute
In the ContentTypeBuilder, possibility to adapt code for PageType to ContentType (and maybe also for ContentGroup)
`
// Add block types
var blockTypes = type.GetCustomAttributes();
foreach (var blockType in blockTypes)
{
pageType.BlockItemTypes.Add(blockType.Type.FullName);
}
return pageType;
`