From 436712367c3c3ec2a4c913fdbd7e588476a2f702 Mon Sep 17 00:00:00 2001 From: AutonetSellCar Deploy Date: Wed, 18 Feb 2026 09:38:41 +0900 Subject: [PATCH] feat: Update vehicle recommendation notification with review CC info Change notification to English and add 1 CC review reward mention. Co-Authored-By: Claude Opus 4.6 --- backend/app/api/notification.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/app/api/notification.py b/backend/app/api/notification.py index f97d778..f521c86 100644 --- a/backend/app/api/notification.py +++ b/backend/app/api/notification.py @@ -51,8 +51,8 @@ def notify_vehicle_recommended(db: Session, user_id: int, request_id: int, vehic db=db, user_id=user_id, notification_type="vehicle_recommended", - title="차량 추천 완료", - message=f"{vehicle_count}대의 차량이 추천되었습니다. 지금 확인해보세요!", + title="Vehicle Recommendation Ready", + message=f"{vehicle_count} vehicles have been recommended for you! Check them out now. Write a review after purchase and earn 1 CC reward.", link=f"/my-request", related_id=request_id, related_type="vehicle_request"