aboutsummaryrefslogtreecommitdiff
path: root/plugins/VNLib.Plugins.Essentials.Content.Routing
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-10-18 21:51:47 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2023-10-18 21:51:47 -0400
commit03c80a52fcaa2443156b1d2e589c664e62db4386 (patch)
treeaf8d1e00eecea2ea216957945c65a03d846e8530 /plugins/VNLib.Plugins.Essentials.Content.Routing
parent3c570206b3cb280d952c0b63b3e970fba5a22500 (diff)
account and endpoint security updates
Diffstat (limited to 'plugins/VNLib.Plugins.Essentials.Content.Routing')
-rw-r--r--plugins/VNLib.Plugins.Essentials.Content.Routing/src/PageRouterEntry.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/VNLib.Plugins.Essentials.Content.Routing/src/PageRouterEntry.cs b/plugins/VNLib.Plugins.Essentials.Content.Routing/src/PageRouterEntry.cs
index ef7836f..8370806 100644
--- a/plugins/VNLib.Plugins.Essentials.Content.Routing/src/PageRouterEntry.cs
+++ b/plugins/VNLib.Plugins.Essentials.Content.Routing/src/PageRouterEntry.cs
@@ -41,7 +41,7 @@ namespace VNLib.Plugins.Essentials.Content.Routing
public void ConfigureServices(IServiceContainer services)
{
//Deploy the page router to the host
- services.AddService(typeof(IPageRouter), PageRouter);
+ services.AddService<IPageRouter>(PageRouter);
}
protected override void OnLoad()