Ok so, pages don't get disabled, but they don't show up! Half working.
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2022-09-18 01:43:17 +01:00
parent 16ea5c3138
commit af39a52971
2 changed files with 4 additions and 1 deletions

View File

@@ -30,6 +30,9 @@ func FormCheck() {
http.HandleFunc("/api/form", func(w http.ResponseWriter, r *http.Request) {
io.WriteString(w, "Disabled")
})
http.HandleFunc("/form", func(w http.ResponseWriter, r *http.Request) {
io.WriteString(w, "Disabled")
})
}
}