feat: unpublish

This commit is contained in:
Tienson Qin
2025-12-29 22:09:22 +08:00
parent 15d7526ac8
commit da314220db
6 changed files with 62 additions and 5 deletions

View File

@@ -389,6 +389,11 @@
:hide? true
:view-context :page
:public? true}}
:logseq.property.publish/published-url {:title "Published URL"
:schema
{:type :string
:view-context :page
:public? true}}
:logseq.property/exclude-from-graph-view {:title "Excluded from Graph view?"
:schema
{:type :checkbox

View File

@@ -37,7 +37,7 @@
(map (juxt :major :minor)
[(parse-schema-version x) (parse-schema-version y)])))
(def version (parse-schema-version "65.16"))
(def version (parse-schema-version "65.17"))
(defn major-version
"Return a number.

View File

@@ -26,7 +26,7 @@
(defn cors-headers
[]
#js {"access-control-allow-origin" "*"
"access-control-allow-methods" "GET,POST,OPTIONS"
"access-control-allow-methods" "GET,POST,DELETE,OPTIONS"
"access-control-allow-headers" "content-type,authorization,x-publish-meta,x-asset-meta,if-none-match"
"access-control-expose-headers" "etag"})