fix: use middleware.DEFAULT_AUTH_COOKIE_NAME for authCookieName

This commit is contained in:
Derrick Hammer 2024-03-17 08:30:55 -04:00
parent 6c58f6bd6c
commit 1bd4527300
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ import (
)
const (
authCookieName = "auth-token"
authCookieName = middleware.DEFAULT_AUTH_COOKIE_NAME
authQueryParam = "auth_token"
)