From 3cdc9a5d6e832397252ff7801dcc8a32dfae4e90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=B5=9C=EC=A4=80=ED=9D=A0?= Date: Mon, 28 Oct 2024 13:40:00 +0900 Subject: [PATCH] cfmgrv4 init...4 --- app/Models/Cloudflare/AuditLogModel.php | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/app/Models/Cloudflare/AuditLogModel.php b/app/Models/Cloudflare/AuditLogModel.php index 67753f2..3aa13ff 100644 --- a/app/Models/Cloudflare/AuditLogModel.php +++ b/app/Models/Cloudflare/AuditLogModel.php @@ -85,12 +85,11 @@ class AuditLogModel extends CommonModel { return $this->modify_process($entity, $formDatas); } - //List 검색용 - public function setList_WordFilter(string $word, $field = null): void - { - parent::setList_WordFilter($word, $field); - $this->orLike(self::TABLE . '.zone_name', $word, 'both'); - $this->orLike(self::TABLE . '.resource_name', $word, 'both'); - } + //List 검색용 + public function setList_WordFilter(string $word, $field = null): void + { + parent::setList_WordFilter($word, $field); + $this->orLike(self::TABLE . '.zone_name', $word, 'both'); + $this->orLike(self::TABLE . '.resource_name', $word, 'both'); } }