diff --git a/app/Models/Cloudflare/AccountModel.php b/app/Models/Cloudflare/AccountModel.php index 2c097a3..4c46128 100644 --- a/app/Models/Cloudflare/AccountModel.php +++ b/app/Models/Cloudflare/AccountModel.php @@ -28,7 +28,7 @@ class AccountModel extends CommonModel } public function getFields(): array { - return [self::PARENT, self::TITLE, 'type', 'status', 'updated_at', 'created_at']; + return [self::PARENT, self::TITLE, 'type', 'status']; } public function getFilterFields(): array { diff --git a/app/Models/Cloudflare/AuditLogModel.php b/app/Models/Cloudflare/AuditLogModel.php index d181fe4..09ee8fd 100644 --- a/app/Models/Cloudflare/AuditLogModel.php +++ b/app/Models/Cloudflare/AuditLogModel.php @@ -28,7 +28,7 @@ class AuditLogModel extends CommonModel } public function getFields(): array { - return ['zone_name', self::TITLE, 'action_info', 'actor', 'interface', 'status', 'updated_at', 'created_at']; + return ['zone_name', self::TITLE, 'action_info', 'actor', 'interface', 'status']; } public function getFilterFields(): array { diff --git a/app/Models/Cloudflare/AuthModel.php b/app/Models/Cloudflare/AuthModel.php index 47ab38e..c58620f 100644 --- a/app/Models/Cloudflare/AuthModel.php +++ b/app/Models/Cloudflare/AuthModel.php @@ -26,7 +26,7 @@ class AuthModel extends CommonModel } public function getFields(): array { - return [self::TITLE, 'authkey', 'status', 'updated_at', 'created_at']; + return [self::TITLE, 'authkey', 'status']; } public function getFilterFields(): array { diff --git a/app/Models/Cloudflare/FirewallModel.php b/app/Models/Cloudflare/FirewallModel.php index 7a01b22..6d5821c 100644 --- a/app/Models/Cloudflare/FirewallModel.php +++ b/app/Models/Cloudflare/FirewallModel.php @@ -29,7 +29,7 @@ class FirewallModel extends CommonModel } public function getFields(): array { - return [self::PARENT, 'mode', 'description', 'expression', 'enabled', 'updated_at', 'created_at']; + return [self::PARENT, 'mode', 'description', 'expression', 'enabled']; } public function getFilterFields(): array { diff --git a/app/Models/Cloudflare/RecordModel.php b/app/Models/Cloudflare/RecordModel.php index 5bf5ca2..2f75a60 100644 --- a/app/Models/Cloudflare/RecordModel.php +++ b/app/Models/Cloudflare/RecordModel.php @@ -29,7 +29,7 @@ class RecordModel extends CommonModel } public function getFields(): array { - return [self::PARENT, 'host', 'type', 'content', 'proxied', 'updated_at', 'created_at']; + return [self::PARENT, 'host', 'type', 'content', 'proxied']; } public function getFilterFields(): array { diff --git a/app/Models/Cloudflare/ZoneModel.php b/app/Models/Cloudflare/ZoneModel.php index 54db884..7d7272c 100644 --- a/app/Models/Cloudflare/ZoneModel.php +++ b/app/Models/Cloudflare/ZoneModel.php @@ -28,7 +28,7 @@ class ZoneModel extends CommonModel } public function getFields(): array { - return [self::PARENT, self::TITLE, 'name_servers', 'original_name_servers', 'plan', 'development_mode', 'ipv6', 'security_level', 'ssl_mode', 'always_use_https', 'status', 'updated_at', 'created_at']; + return [self::PARENT, self::TITLE, 'name_servers', 'original_name_servers', 'plan', 'development_mode', 'ipv6', 'security_level', 'ssl_mode', 'always_use_https', 'status']; } public function getFilterFields(): array { diff --git a/app/Models/MapurlModel.php b/app/Models/MapurlModel.php index 4353f4d..cf475f2 100644 --- a/app/Models/MapurlModel.php +++ b/app/Models/MapurlModel.php @@ -28,7 +28,7 @@ class MapurlModel extends CommonModel } public function getFields(): array { - return [self::TITLE, 'newurl', 'status', 'updated_at', 'created_at']; + return [self::TITLE, 'newurl', 'status']; } public function getFilterFields(): array { diff --git a/app/Models/MyLogModel.php b/app/Models/MyLogModel.php index 75b85f0..0bb9c3c 100644 --- a/app/Models/MyLogModel.php +++ b/app/Models/MyLogModel.php @@ -31,7 +31,7 @@ class MyLogModel extends CommonModel } public function getFields(): array { - return ['class_name', 'method_name', self::TITLE, 'user_uid', 'status', 'created_at']; + return ['class_name', 'method_name', self::TITLE, 'user_uid', 'status']; } public function getFilterFields(): array { diff --git a/app/Models/UserModel.php b/app/Models/UserModel.php index 1b6ca1c..1819b37 100644 --- a/app/Models/UserModel.php +++ b/app/Models/UserModel.php @@ -32,7 +32,7 @@ class UserModel extends CommonModel } public function getFields(): array { - return ['id', self::TITLE, 'email', 'mobile', 'role', 'status', 'updated_at', 'created_at']; + return ['id', self::TITLE, 'email', 'mobile', 'role', 'status']; } public function getFilterFields(): array { diff --git a/app/Models/UserSNSModel.php b/app/Models/UserSNSModel.php index 33add72..d44d8eb 100644 --- a/app/Models/UserSNSModel.php +++ b/app/Models/UserSNSModel.php @@ -34,7 +34,7 @@ class UserSNSModel extends CommonModel } public function getFields(): array { - return [self::PARENT, 'site', 'id', self::TITLE, 'email', 'updated_at', 'created_at']; + return [self::PARENT, 'site', 'id', self::TITLE, 'email']; } public function getFilterFields(): array {