From 4fc5126bc23a850e377c27e30cbe19054a48f83d Mon Sep 17 00:00:00 2001 From: xxeol2 <71129059+xxeol2@users.noreply.github.com> Date: Tue, 11 Jan 2022 17:19:03 +0900 Subject: [PATCH] [STYLE] jwt token user wesopt->spark (#14) --- functions/lib/jwtHandlers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/lib/jwtHandlers.js b/functions/lib/jwtHandlers.js index e5a501a..090a8fb 100644 --- a/functions/lib/jwtHandlers.js +++ b/functions/lib/jwtHandlers.js @@ -5,7 +5,7 @@ const secretKey = process.env.JWT_SECRET; const options = { algorithm: 'HS256', expiresIn: '30d', - issuer: 'wesopt', + issuer: 'spark', }; const sign = (user) => {