Return explicit http 200

This commit is contained in:
Gabe Kangas 2022-05-23 15:12:59 -07:00
parent 677bd9efe3
commit ade4d68c0d
No known key found for this signature in database
GPG Key ID: 9A56337728BC81EA

View File

@ -11,4 +11,5 @@ import (
func Ping(w http.ResponseWriter, r *http.Request) {
viewer := models.GenerateViewerFromRequest(r)
core.SetViewerActive(&viewer)
w.WriteHeader(http.StatusOK)
}