Feat v0.4.3 backlinks wikilinks (#25)
All checks were successful
All checks were successful
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:
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user