aboutsummaryrefslogtreecommitdiff
path: root/plugins/VNLib.Plugins.Essentials.Content.Routing/src/Router.cs
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-07-27 22:06:51 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2024-07-27 22:06:51 -0400
commit48632913da47d77602c8e65275eaa24752258cf9 (patch)
treedb89f1d03e25dc1ecab7ced2f9b22c1926e7c1c5 /plugins/VNLib.Plugins.Essentials.Content.Routing/src/Router.cs
parent041941d85e5088837dc419d9ff1f1c9b70d41cbf (diff)
add extensions features, fix mising mfa auth. Untested!
Diffstat (limited to 'plugins/VNLib.Plugins.Essentials.Content.Routing/src/Router.cs')
-rw-r--r--plugins/VNLib.Plugins.Essentials.Content.Routing/src/Router.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/VNLib.Plugins.Essentials.Content.Routing/src/Router.cs b/plugins/VNLib.Plugins.Essentials.Content.Routing/src/Router.cs
index 72f091a..d89ef37 100644
--- a/plugins/VNLib.Plugins.Essentials.Content.Routing/src/Router.cs
+++ b/plugins/VNLib.Plugins.Essentials.Content.Routing/src/Router.cs
@@ -45,7 +45,7 @@ namespace VNLib.Plugins.Essentials.Content.Routing
{
private static readonly RouteComparer Comparer = new();
- private readonly IRouteStore Store = plugin.GetOrCreateSingleton<ManagedRouteStore>();
+ private readonly ManagedRouteStore Store = plugin.GetOrCreateSingleton<ManagedRouteStore>();
private readonly ILogProvider Logger = plugin.Log;
private readonly ConcurrentDictionary<IWebProcessor, Task<ReadOnlyCollection<Route>>> RouteTable = new();