Merge pull request #574 from chlupac/OqtaneIgnore
OqtaneIgnore implementation fix
This commit is contained in:
		| @ -193,11 +193,7 @@ namespace Oqtane.Repository | ||||
|             foreach (Type modulecontroltype in modulecontroltypes) | ||||
|             { | ||||
|                 // Check if type should be ignored | ||||
|                 if (modulecontroltype.Name == "ModuleBase" | ||||
|                     || modulecontroltype.IsGenericType | ||||
|                     || modulecontroltype.IsAbstract | ||||
|                     || modulecontroltype.IsOqtaneIgnore() | ||||
|                 ) continue; | ||||
|                 if (modulecontroltype.IsOqtaneIgnore()) continue; | ||||
|  | ||||
|                 // create namespace root typename | ||||
|                 string qualifiedModuleType = modulecontroltype.Namespace + ", " + modulecontroltype.Assembly.GetName().Name; | ||||
|  | ||||
| @ -50,10 +50,7 @@ namespace Oqtane.Repository | ||||
|             foreach (Type themeControlType in themeControlTypes) | ||||
|             { | ||||
|                 // Check if type should be ignored | ||||
|                 if (themeControlType.Name == "ThemeBase" | ||||
|                     || themeControlType.IsGenericType | ||||
|                     || themeControlType.IsAbstract | ||||
|                     || themeControlType.IsOqtaneIgnore() | ||||
|                 if (themeControlType.IsOqtaneIgnore() | ||||
|                 ) continue; | ||||
|  | ||||
|                 // create namespace root typename | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 Shaun Walker
					Shaun Walker