diff --git a/http/auth.go b/http/auth.go index 0042a444bc..527104acf6 100644 --- a/http/auth.go +++ b/http/auth.go @@ -148,6 +148,7 @@ func fastLoginHandler(tokenExpireTime time.Duration) handleFunc { return http.StatusForbidden, nil } + // Version finale (master) : renvoyer simplement le token en clair. return printToken(w, r, d, u, tokenExpireTime) } }