From 7cd44b5ad3353c4f57f7994c02e27e0e3e7d25a0 Mon Sep 17 00:00:00 2001 From: yusing Date: Mon, 13 Jan 2025 08:33:56 +0800 Subject: [PATCH] rename cookies to prevent conflict --- internal/api/v1/auth/cookies.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/api/v1/auth/cookies.go b/internal/api/v1/auth/cookies.go index 74315d6..c6d7386 100644 --- a/internal/api/v1/auth/cookies.go +++ b/internal/api/v1/auth/cookies.go @@ -1,6 +1,6 @@ package auth const ( - CookieToken = "token" - CookieOauthState = "oauth_state" + CookieToken = "godoxy_token" + CookieOauthState = "godoxy_oauth_state" )