2 Commits

Author SHA1 Message Date
98ea369664 Merge branch 'main' of https://code.spamasaurus.com/djpbessems/ContainerImage.SpamasaurusRex
All checks were successful
Container & Helm chart / Semantic Release (Dry-run) (push) Successful in 31s
Container & Helm chart / Helm chart (push) Successful in 17s
Container & Helm chart / Container image (push) Successful in 1m43s
Container & Helm chart / Semantic Release (push) Successful in 33s
2024-03-10 22:27:37 +11:00
62c27305f9 fix: Replace incorrect http status code 2024-03-10 22:27:34 +11:00

View File

@ -59,7 +59,7 @@ func callbackHandler(w http.ResponseWriter, r *http.Request) {
// w.Write([]byte("Authentication successful!"))
url := "https://alias.spamasaurus.com"
http.Redirect(w, r, url, http.StatusAccepted)
http.Redirect(w, r, url, http.StatusSeeOther)
}
func healthHandler(w http.ResponseWriter, r *http.Request) {