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

This commit is contained in:
Midou36O 2022-09-18 01:43:17 +01:00
parent 16ea5c3138
commit af39a52971
Signed by: midou
GPG Key ID: 08063D5407090BC2
2 changed files with 4 additions and 1 deletions

View File

@ -20,8 +20,8 @@ var (
func CheckAnn() {
if resAnn == "true" {
Announcements()
AnnPage()
Announcements()
} else {
log.Println("Announcements disabled")
http.HandleFunc("/announcements", func(w http.ResponseWriter, r *http.Request) {

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")
})
}
}