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/notes-tab.html | 36 ------------------------------ web/templates/partials/obsidian-notes.html | 30 ------------------------- 2 files changed, 66 deletions(-) delete mode 100644 web/templates/partials/notes-tab.html delete mode 100644 web/templates/partials/obsidian-notes.html (limited to 'web/templates/partials') diff --git a/web/templates/partials/notes-tab.html b/web/templates/partials/notes-tab.html deleted file mode 100644 index df844cf..0000000 --- a/web/templates/partials/notes-tab.html +++ /dev/null @@ -1,36 +0,0 @@ -{{define "notes-tab"}} -
- - {{template "error-banner" .}} - - -
- -
- - -
- {{if .Notes}} - {{template "obsidian-notes" .}} - {{else}} -
- - - -

No notes found

-

- Configure your Obsidian vault path in the settings to see your recent notes displayed here. -

-
- {{end}} -
-
-{{end}} 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