mirror of
https://github.com/1f349/cardcaldav.git
synced 2024-11-09 22:43:27 +00:00
Update basic auth realm
This commit is contained in:
parent
d3515a86a0
commit
e6eaaedb44
2
auth.go
2
auth.go
@ -58,7 +58,7 @@ type Auth struct {
|
|||||||
func (a *Auth) Middleware(next http.Handler) http.Handler {
|
func (a *Auth) Middleware(next http.Handler) http.Handler {
|
||||||
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
if r.Header.Get("Authorization") == "" {
|
if r.Header.Get("Authorization") == "" {
|
||||||
w.Header().Add("WWW-Authenticate", `Basic realm="Please provide a password", charset="UTF-8"`)
|
w.Header().Add("WWW-Authenticate", `Basic realm="1f349/cardcaldav", charset="UTF-8"`)
|
||||||
http.Error(w, "HTTP auth is required", http.StatusUnauthorized)
|
http.Error(w, "HTTP auth is required", http.StatusUnauthorized)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user