feat:생성이력에 서울시간 표기 + 제작시간 열 추가
- 날짜→생성일시: KST(Asia/Seoul) 기준 MM/DD HH:mm 형식 - 제작시간 열 추가: created_at~updated_at 차이 계산 (완료/실패 시) - 진행 중인 항목은 "진행 중" 표시 - history API에 updated_at 추가 반환 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -213,7 +213,7 @@ public function history(Request $request): JsonResponse
|
||||
$videos = VideoGeneration::where('user_id', auth()->id())
|
||||
->orderByDesc('created_at')
|
||||
->limit(50)
|
||||
->get(['id', 'keyword', 'title', 'status', 'progress', 'cost_usd', 'created_at']);
|
||||
->get(['id', 'keyword', 'title', 'status', 'progress', 'cost_usd', 'created_at', 'updated_at']);
|
||||
|
||||
return response()->json([
|
||||
'success' => true,
|
||||
|
||||
Reference in New Issue
Block a user