Compare commits
1 Commits
options-pu
...
master
Author | SHA1 | Date | |
---|---|---|---|
|
daf1ffe95c |
@ -24,14 +24,11 @@ func AnnCheck() {
|
|||||||
http.HandleFunc("/announcements", func(w http.ResponseWriter, r *http.Request) {
|
http.HandleFunc("/announcements", func(w http.ResponseWriter, r *http.Request) {
|
||||||
http.Error(w, "Announcements are disabled.", http.StatusServiceUnavailable)
|
http.Error(w, "Announcements are disabled.", http.StatusServiceUnavailable)
|
||||||
})
|
})
|
||||||
http.HandleFunc("/api/set/announcements", func(w http.ResponseWriter, r *http.Request) {
|
http.HandleFunc("/api/announcements", func(w http.ResponseWriter, r *http.Request) {
|
||||||
http.Error(w, "{\"enabled\": \"false\"}", http.StatusOK)
|
http.Error(w, "{\"enabled\": \"false\"}", http.StatusServiceUnavailable)
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
AnnPage()
|
AnnPage()
|
||||||
http.HandleFunc("/api/set/announcements", func(w http.ResponseWriter, r *http.Request) {
|
|
||||||
http.Error(w, "{\"enabled\": \"true\"}", http.StatusOK)
|
|
||||||
})
|
|
||||||
Announcements()
|
Announcements()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -64,6 +61,7 @@ func handleAnnouncements(w http.ResponseWriter, r *http.Request) {
|
|||||||
w.WriteHeader(http.StatusOK)
|
w.WriteHeader(http.StatusOK)
|
||||||
now := time.Now().Unix()
|
now := time.Now().Unix()
|
||||||
data := map[string]interface{}{
|
data := map[string]interface{}{
|
||||||
|
"enabled": "true",
|
||||||
"title": r.FormValue("title"),
|
"title": r.FormValue("title"),
|
||||||
"link": r.FormValue("link"),
|
"link": r.FormValue("link"),
|
||||||
"severity": r.FormValue("severity"),
|
"severity": r.FormValue("severity"),
|
||||||
|
@ -27,15 +27,8 @@ func FormCheck() {
|
|||||||
http.HandleFunc("/form", func(w http.ResponseWriter, r *http.Request) {
|
http.HandleFunc("/form", func(w http.ResponseWriter, r *http.Request) {
|
||||||
http.Error(w, "Form is disabled.", http.StatusServiceUnavailable)
|
http.Error(w, "Form is disabled.", http.StatusServiceUnavailable)
|
||||||
})
|
})
|
||||||
http.HandleFunc("/api/set/form", func(w http.ResponseWriter, r *http.Request) {
|
|
||||||
http.Error(w, "{\"enabled\": \"false\"}", http.StatusOK)
|
|
||||||
})
|
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
FormPage()
|
FormPage()
|
||||||
http.HandleFunc("/api/set/form", func(w http.ResponseWriter, r *http.Request) {
|
|
||||||
http.Error(w, "{\"enabled\": \"true\"}", http.StatusOK)
|
|
||||||
})
|
|
||||||
Form()
|
Form()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user