TASK-020 버그 수정:
- BUG-1: adminFetch Authorization 헤더 우선순위 수정 (JWT > API Key)
하네스 저장 실패 에러 핸들링 개선 (401/non-ok 명시적 처리)
- BUG-2: /admin/logs useEffect 초기 로드 추가 (마운트 시 자동 조회)
- BUG-3: costs/record python3 → node/python3/jq fallback 체인
TASK-021 JWT BE:
- User 모델 추가 (Prisma schema)
- AuthService: register(초대코드 검증+bcrypt) / login / refresh / getMe
- JwtStrategy (passport-jwt), JwtGuard, CompositeGuard (JWT+API Key)
- AuthController: /api/auth/{register,login,refresh,me}
- ThrottlerModule: 로그인 5회/분 Rate limiting
- CompositeGuard로 AdminController, CostsController Guard 전환
- EventsGateway: Socket.IO handshake JWT 검증 추가
- 테스트 26/26 pass
TASK-022 FE:
- AuthContext (AuthProvider + useAuth)
- AppShell (AuthProvider + AuthGate 라우트 보호)
- /login 페이지 (터미널 UI)
- /register 페이지 (초대 코드 필드)
- Sidebar: 로그인 사용자명 + 로그아웃 버튼
- FE 16 routes build 성공
27 lines
666 B
TypeScript
27 lines
666 B
TypeScript
import type { Metadata } from 'next';
|
|
import StyledComponentsRegistry from '@/lib/registry';
|
|
import GlobalStyle from '@/styles/GlobalStyle';
|
|
import AppShell from '@/components/common/AppShell';
|
|
|
|
export const metadata: Metadata = {
|
|
title: '하나랑 대시보드',
|
|
description: '4자매 멀티에이전트 파이프라인 관제 대시보드',
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="ko">
|
|
<body>
|
|
<StyledComponentsRegistry>
|
|
<GlobalStyle />
|
|
<AppShell>{children}</AppShell>
|
|
</StyledComponentsRegistry>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|