fix: [approval] 파일 업로드 시 display_name 누락 오류 수정

This commit is contained in:
김보곤
2026-03-04 21:31:57 +09:00
parent 7b81f954d7
commit d431fc3637

View File

@@ -494,6 +494,7 @@ public function uploadFile(Request $request, GoogleCloudStorageService $gcs): Js
$fileRecord = File::create([
'tenant_id' => $tenantId,
'document_type' => 'approval_attachment',
'display_name' => $file->getClientOriginalName(),
'original_name' => $file->getClientOriginalName(),
'stored_name' => $storedName,
'file_path' => $storagePath,