From 07ba815e8517ee2d3a5fa531361bbd09bdfcbaa7 Mon Sep 17 00:00:00 2001 From: Peter Stone Date: Tue, 20 Jan 2026 11:17:19 -1000 Subject: Remove Obsidian integration for public server deployment Obsidian relied on local filesystem access which is incompatible with public server deployment. This removes all Obsidian-related code including: - API client and interface - Store layer methods (SaveNotes, GetNotes, SearchNotes) - Handler methods and routes - UI tab and templates - Configuration fields - Related tests Co-Authored-By: Claude Opus 4.5 --- web/templates/partials/obsidian-notes.html | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 web/templates/partials/obsidian-notes.html (limited to 'web/templates/partials/obsidian-notes.html') diff --git a/web/templates/partials/obsidian-notes.html b/web/templates/partials/obsidian-notes.html deleted file mode 100644 index 268a0fe..0000000 --- a/web/templates/partials/obsidian-notes.html +++ /dev/null @@ -1,30 +0,0 @@ -{{define "obsidian-notes"}} -{{if .Notes}} -
- -
-
-

Recent Notes

-
- -
- {{range .Notes}} -
-

{{.Title}}

-

{{.Content}}

-
- {{.Modified.Format "Jan 2, 3:04 PM"}} - {{if .Tags}} -
- {{range .Tags}} - #{{.}} - {{end}} -
- {{end}} -
-
- {{end}} -
-
-{{end}} -{{end}} -- cgit v1.2.3