From 97354a952527ed61b2c17e44e4ab6bc56e893cd5 Mon Sep 17 00:00:00 2001 From: Shaun Walker Date: Fri, 8 May 2020 08:34:31 -0400 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 15b1222f..5baaef33 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Please note that this project is governed by the **[.NET Foundation Contributor # Roadmap This project is a work in progress and the schedule for implementing enhancements is dependent upon the availability of community members who are willing/able to assist. -Note: We are planning to release V1 at the same time that Blazor WebAssembly ships on May 21, 2020 +Note: We are planning to release V1 at the same time that Blazor WebAssembly ships on May 19, 2020 V1 (MVP) - [x] Multi-Tenant ( Shared Database & Isolated Database ) From 1e270e642331214cddb2f3a8f78c5fd5fce84dd1 Mon Sep 17 00:00:00 2001 From: Pavel Vesely Date: Fri, 8 May 2020 21:30:31 +0200 Subject: [PATCH 2/2] Ignore abstract classes at loading --- Oqtane.Server/Repository/ModuleDefinitionRepository.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Oqtane.Server/Repository/ModuleDefinitionRepository.cs b/Oqtane.Server/Repository/ModuleDefinitionRepository.cs index 9e717e37..3b9891b4 100644 --- a/Oqtane.Server/Repository/ModuleDefinitionRepository.cs +++ b/Oqtane.Server/Repository/ModuleDefinitionRepository.cs @@ -194,6 +194,7 @@ namespace Oqtane.Repository // Check if type should be ignored if (modulecontroltype.Name == "ModuleBase" || modulecontroltype.IsGenericType + || modulecontroltype.IsAbstract || Attribute.IsDefined(modulecontroltype, typeof(OqtaneIgnoreAttribute)) ) continue;