From 1991add3ed200e9cd8caa631e6d12a73f5485299 Mon Sep 17 00:00:00 2001 From: Asa <26807394+a01sa01to@users.noreply.github.com> Date: Sat, 14 Dec 2024 23:56:50 +0900 Subject: [PATCH] refactor: update TODO comment --- webapp/api/login/github.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/webapp/api/login/github.ts b/webapp/api/login/github.ts index b2803cf..9ec03ab 100644 --- a/webapp/api/login/github.ts +++ b/webapp/api/login/github.ts @@ -39,8 +39,7 @@ interface GitHubOAuthTokenResponse { token_type: string } -// いったん /cb.ts そのまま -// TODO: たぶん userId さえ cookie に残っていれば十分そう? +// TODO: cookieSessionStorage の userId 以外は使ってないので消す app.get( '/callback', zValidator('query', z.object({ code: z.string(), state: z.string() })),