Implements: U4-2937 A tree item should be able to have a default action

This commit is contained in:
Shannon
2013-09-26 15:55:38 +10:00
parent c9fd168cbd
commit e1cf3bc597
14 changed files with 477 additions and 493 deletions

View File

@@ -26,7 +26,7 @@ namespace Umbraco.Web
internal static IEnumerable<Type> ResolveAttributedTreeControllers(this PluginManager resolver)
{
//don't cache the result of this because it is only used once during app startup, caching will just add a bit more mem overhead for no reason
return resolver.ResolveTypesWithAttribute<TreeApiController, TreeAttribute>(cacheResult: false);
return resolver.ResolveTypesWithAttribute<TreeController, TreeAttribute>(cacheResult: false);
}
internal static IEnumerable<Type> ResolveSurfaceControllers(this PluginManager resolver)