Feat v0.4.3 backlinks wikilinks (#25)
All checks were successful
CI/CD / detect-changes (push) Successful in 3s
CI/CD / test-frontend (push) Successful in 4s
CI/CD / test-go-pg (push) Successful in 2m41s
CI/CD / test-sqlite (push) Successful in 2m43s
CI/CD / build-and-deploy (push) Successful in 25s

Co-authored-by: Jeffrey Smith <jasafpro@gmail.com>
Co-committed-by: Jeffrey Smith <jasafpro@gmail.com>
This commit was merged in pull request #25.
This commit is contained in:
2026-03-29 17:05:44 +00:00
committed by xcaliber
parent 32beb3cee4
commit 31ab572c95
7 changed files with 391 additions and 16 deletions

View File

@@ -6,7 +6,7 @@
"route": "/s/notes",
"auth": "authenticated",
"layout": "single",
"version": "0.3.0",
"version": "0.4.0",
"icon": "📝",
"description": "Markdown notes surface with folders, tags, and backlinks.",
"author": "switchboard",
@@ -28,7 +28,9 @@
{"method": "POST", "path": "/notes/move"},
{"method": "GET", "path": "/tags"},
{"method": "GET", "path": "/tags/*"},
{"method": "PUT", "path": "/tags/*"}
{"method": "PUT", "path": "/tags/*"},
{"method": "GET", "path": "/links/*"},
{"method": "GET", "path": "/backlinks/*"}
],
"db_tables": {
@@ -59,6 +61,17 @@
["tag"]
]
},
"links": {
"columns": {
"source_id": "text",
"target_id": "text",
"link_text": "text"
},
"indexes": [
["source_id"],
["target_id"]
]
},
"folders": {
"columns": {
"name": "text",