From 95fbbd4fff7ef979aa4fa9e186044b9bb25678af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Mon, 9 Feb 2026 21:41:32 +0900 Subject: [PATCH] =?UTF-8?q?feat:=EA=B3=B5=EC=82=AC=ED=98=84=EC=9E=A5=20?= =?UTF-8?q?=EC=82=AC=EC=A7=84=EB=8C=80=EC=A7=80=20GCS=20=EC=97=85=EB=A1=9C?= =?UTF-8?q?=EB=93=9C=20=EC=8B=9C=20AI=20=ED=86=A0=ED=81=B0=20=EC=82=AC?= =?UTF-8?q?=EC=9A=A9=EB=9F=89=20=EA=B8=B0=EB=A1=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit AiTokenHelper::saveGcsStorageUsage 호출 추가 Co-Authored-By: Claude Opus 4.6 --- app/Services/ConstructionSitePhotoService.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/Services/ConstructionSitePhotoService.php b/app/Services/ConstructionSitePhotoService.php index 9dc562b7..ac4aaf52 100644 --- a/app/Services/ConstructionSitePhotoService.php +++ b/app/Services/ConstructionSitePhotoService.php @@ -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; }