🎨 Enable or disable all CSS and JS code snippets https://github.com/siyuan-note/siyuan/issues/9860

This commit is contained in:
Daniel 2023-12-18 10:04:42 +08:00
parent 01205215eb
commit 65f747fbf2
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
2 changed files with 30 additions and 0 deletions

View file

@ -310,6 +310,7 @@ func ServeAPI(ginServer *gin.Engine) {
ginServer.Handle("POST", "/api/setting/refreshVirtualBlockRef", model.CheckAuth, model.CheckReadonly, refreshVirtualBlockRef)
ginServer.Handle("POST", "/api/setting/addVirtualBlockRefInclude", model.CheckAuth, model.CheckReadonly, addVirtualBlockRefInclude)
ginServer.Handle("POST", "/api/setting/addVirtualBlockRefExclude", model.CheckAuth, model.CheckReadonly, addVirtualBlockRefExclude)
ginServer.Handle("POST", "/api/setting/setSnippet", model.CheckAuth, model.CheckReadonly, setConfSnippet)
ginServer.Handle("POST", "/api/graph/resetGraph", model.CheckAuth, model.CheckReadonly, resetGraph)
ginServer.Handle("POST", "/api/graph/resetLocalGraph", model.CheckAuth, model.CheckReadonly, resetLocalGraph)

View file

@ -29,6 +29,35 @@ import (
"github.com/siyuan-note/siyuan/kernel/util"
)
func setConfSnippet(c *gin.Context) {
ret := gulu.Ret.NewResult()
defer c.JSON(http.StatusOK, ret)
arg, ok := util.JsonArg(c, ret)
if !ok {
return
}
param, err := gulu.JSON.MarshalJSON(arg)
if nil != err {
ret.Code = -1
ret.Msg = err.Error()
return
}
snippet := &conf.Snpt{}
if err = gulu.JSON.UnmarshalJSON(param, snippet); nil != err {
ret.Code = -1
ret.Msg = err.Error()
return
}
model.Conf.Snippet = snippet
model.Conf.Save()
ret.Data = snippet
}
func addVirtualBlockRefExclude(c *gin.Context) {
// Add internal kernel API `/api/setting/addVirtualBlockRefExclude` https://github.com/siyuan-note/siyuan/issues/9909