Skip to content

Commit

Permalink
fix(backned): renamed jwt -> heimdall
Browse files Browse the repository at this point in the history
  • Loading branch information
proffapt committed Jun 17, 2024
1 parent 0ba2051 commit 369fd80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ func handleVerifyOtp(res http.ResponseWriter, req *http.Request) {
}

func handleValidateJwt(res http.ResponseWriter, req *http.Request) {
cookie, err := req.Cookie("jwt")
cookie, err := req.Cookie("heimdall")
if err != nil {
http.Error(res, "No JWT session token found.", http.StatusUnauthorized)
return
Expand Down

0 comments on commit 369fd80

Please sign in to comment.