0

Return success on custom styles save

This commit is contained in:
Gabe Kangas 2021-04-12 00:06:56 -07:00
parent e2c2f6561e
commit f313f69946

View File

@ -537,6 +537,9 @@ func SetCustomStyles(w http.ResponseWriter, r *http.Request) {
}
data.SetCustomStyles(customStyles.Value.(string))
controllers.WriteSimpleResponse(w, true, "custom styles updated")
}
func requirePOST(w http.ResponseWriter, r *http.Request) bool {