feat: 사이드바 순서 변경 + 기본 진입 경로 일정으로

- 사이드바 nav 순서: 일정 → 내 업무 → 프로젝트
- 기본 진입을 /schedule 로: 루트 redirect, 로그인 후 이동, 로그인 상태에서
  로그인/가입 진입 가드, 소셜 로그인(구글/카카오) 콜백

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-23 13:39:38 +09:00
parent ad950e88ad
commit 34b5b1d552
4 changed files with 31 additions and 31 deletions
+2 -2
View File
@@ -210,7 +210,7 @@ export class AuthController {
): Promise<void> {
// 소셜 로그인은 별도 체크박스가 없어 로그인 유지(영속)로 처리
await this.loginWith(res, req.user as PublicUser, true);
res.redirect(`${this.webUrl()}/projects`);
res.redirect(`${this.webUrl()}/schedule`);
}
// ── 카카오 OAuth ──
@@ -232,7 +232,7 @@ export class AuthController {
): Promise<void> {
// 소셜 로그인은 별도 체크박스가 없어 로그인 유지(영속)로 처리
await this.loginWith(res, req.user as PublicUser, true);
res.redirect(`${this.webUrl()}/projects`);
res.redirect(`${this.webUrl()}/schedule`);
}
@Post('logout')