From dea52e38d6255ed5272cc311709a08d58bb4b841 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=B5=9C=EC=A4=80=ED=9D=A0?= Date: Mon, 23 Feb 2026 15:28:45 +0900 Subject: [PATCH] daemon-idc init --- app/Services/Auth/GoogleService.php | 2 +- app/Services/Auth/LocalService.php | 2 +- app/Services/CommonService.php | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/Services/Auth/GoogleService.php b/app/Services/Auth/GoogleService.php index 36cf03c..1f7db7b 100644 --- a/app/Services/Auth/GoogleService.php +++ b/app/Services/Auth/GoogleService.php @@ -26,7 +26,7 @@ class GoogleService extends AuthService { try { //입력값 검증 - $this->getActionForm()->validate('login', $formDatas); + $this->getActionForm()->validate($formDatas); $this->socket->setToken($formDatas['access_code']); $sns_entity = $this->socket->signup(); // local db 사용와의 연결 확인 diff --git a/app/Services/Auth/LocalService.php b/app/Services/Auth/LocalService.php index f416fb2..9eff5f4 100644 --- a/app/Services/Auth/LocalService.php +++ b/app/Services/Auth/LocalService.php @@ -24,7 +24,7 @@ class LocalService extends AuthService { $this->getActionForm()->action_init_process('login', $formDatas); //입력값 검증 - $this->getActionForm()->validate('login', $formDatas); + $this->getActionForm()->validate($formDatas); //로그인 정보확인 $entity = $this->getEntity(['id' => $formDatas['id'], 'status' => 'AVAILABLE']); if (!$entity instanceof UserEntity) { diff --git a/app/Services/CommonService.php b/app/Services/CommonService.php index cce6523..2d921ee 100644 --- a/app/Services/CommonService.php +++ b/app/Services/CommonService.php @@ -267,7 +267,7 @@ abstract class CommonService $formDatas = $this->actionForm_fieldhook_process($field, $value, $formDatas); } // log_message('debug', 'AFTER hook CREATE FORMDATA:' . print_r($formDatas ?? null, true)); - $actionForm->validate('create', $formDatas); // ✅ 여기서 검증 + $actionForm->validate($formDatas); // ✅ 여기서 검증 } $entityClass = $this->getEntityClass(); @@ -307,7 +307,7 @@ abstract class CommonService $formDatas = $this->actionForm_fieldhook_process($field, $value, $formDatas); } // log_message('debug', 'AFTER hook MODIFY FORMDATA:' . print_r($formDatas ?? null, true)); - $actionForm->validate('modify', $formDatas); // ✅ 여기서 검증 + $actionForm->validate($formDatas); // ✅ 여기서 검증 } // 검증 통과 후 엔티티 반영 $formDatas = $this->save_before_fill($formDatas);