feat:공사현장 사진대지 GCS 업로드 시 AI 토큰 사용량 기록

AiTokenHelper::saveGcsStorageUsage 호출 추가

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
김보곤
2026-02-09 21:41:32 +09:00
parent 16337a243d
commit 95fbbd4fff

View File

@@ -2,6 +2,7 @@
namespace App\Services;
use App\Helpers\AiTokenHelper;
use App\Models\Juil\ConstructionSitePhoto;
use Illuminate\Contracts\Pagination\LengthAwarePaginator;
use Illuminate\Support\Facades\Auth;
@@ -86,6 +87,8 @@ public function uploadPhoto(ConstructionSitePhoto $photo, $file, string $type):
$type . '_photo_size' => $result['size'],
]);
AiTokenHelper::saveGcsStorageUsage('공사현장사진대지-GCS저장', $result['size']);
return true;
}