From 5df4cf72fac12669076d91fe46ddc2b7afc99276 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=B5=9C=EC=A4=80=ED=9D=A0?= Date: Fri, 14 Mar 2025 16:37:38 +0900 Subject: [PATCH] cfmgrv4 init...10 --- app/Services/Cloudflare/AccountService.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/Services/Cloudflare/AccountService.php b/app/Services/Cloudflare/AccountService.php index 8eb22b1..8484f22 100644 --- a/app/Services/Cloudflare/AccountService.php +++ b/app/Services/Cloudflare/AccountService.php @@ -45,9 +45,11 @@ class AccountService extends CloudflareService { //부모데이터정의 $this->setParentEntity($parent_entity); + $entity = $this->getModel()->create($formDatas); //생성값 formDatas Log남기기 - $this->add_MylogTrait(__FUNCTION__, $formDatas); - return $this->getModel()->create($formDatas); + $this->add_MylogTrait(__FUNCTION__, $formDatas, $entity); + + return $entity; } public function modify(AuthEntity $parent_entity, AccountEntity $entity, array $formDatas): AccountEntity