From 3d6b1eb0aff5c591606ef77b0c59b1f37648ff36 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Wed, 17 Jun 2020 15:46:03 +0200 Subject: [PATCH] wip #3712 --- src/Company.php | 3 +++ src/User.php | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Company.php b/src/Company.php index 7b06a43..e85905f 100644 --- a/src/Company.php +++ b/src/Company.php @@ -70,5 +70,8 @@ class Company extends CubistMagicAbstractModel $this->addField(['name' => 'e1_ws_signatures', 'type' => 'Hidden']); + + $this->addField(['name' => 'e1_ws_grade', + 'type' => 'Hidden']); } } diff --git a/src/User.php b/src/User.php index 1cebf08..6c4d1ce 100644 --- a/src/User.php +++ b/src/User.php @@ -60,7 +60,7 @@ class User extends CubistMagicAuthenticatable 'type' => 'Locale', 'tab' => 'Settings']); - $extranetv1 = ['settings', 'ws_password', 'ws_settings', 'ws_rights', 'ws_domains', 'login', 'mobile', 'fax', 'notes']; + $extranetv1 = ['settings', 'ws_password', 'ws_settings', 'ws_rights', 'ws_domains', 'login', 'mobile', 'fax', 'notes', 'grade']; foreach ($extranetv1 as $f) { $this->addField(['name' => 'e1_' . $f, -- 2.39.5