aboutsummaryrefslogtreecommitdiff
path: root/back-end/src/SimpleBookmarkEntry.cs
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-03-11 21:21:18 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2024-03-11 21:21:18 -0400
commit748cdbf4880d830fd794e92856e8c35a46e4f884 (patch)
tree27d539f1f8d65d07f25c2e63947c5358ab48d9c3 /back-end/src/SimpleBookmarkEntry.cs
parent3883de080e263d2f076f65b4600a5021d3d64a21 (diff)
feat(app): #1 update libs & add curl support
Diffstat (limited to 'back-end/src/SimpleBookmarkEntry.cs')
-rw-r--r--back-end/src/SimpleBookmarkEntry.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/back-end/src/SimpleBookmarkEntry.cs b/back-end/src/SimpleBookmarkEntry.cs
index a1c9590..13b94a5 100644
--- a/back-end/src/SimpleBookmarkEntry.cs
+++ b/back-end/src/SimpleBookmarkEntry.cs
@@ -50,9 +50,10 @@ namespace SimpleBookmark
//route the bm endpoint
this.Route<BookmarkEndpoint>();
this.Route<BmAccountEndpoint>();
+ this.Route<SiteLookupEndpoint>();
//Ensure database is created after a delay
- this.ObserveWork(() => this.EnsureDbCreatedAsync<SimpleBookmarkContext>(this), 1000);
+ this.ObserveWork(() => this.EnsureDbCreatedAsync<SimpleBookmarkContext>(this), 1500);
Log.Information("Plugin Loaded");
PrintHelloMessage();