diff --git a/src/Dto/Input/NetworkSettingsInput.php b/src/Dto/Input/NetworkSettingsInput.php index 057d848..46cec1f 100644 --- a/src/Dto/Input/NetworkSettingsInput.php +++ b/src/Dto/Input/NetworkSettingsInput.php @@ -99,7 +99,6 @@ class NetworkSettingsInput $this->mcastSpeed = $networkSettings->getMcastSpeed(); $this->mcastPort = $networkSettings->getMcastPort(); $this->mcastMode = $networkSettings->getMcastMode(); - $this->oglog = $networkSettings->getOglog(); $this->ogshare = $networkSettings->getOgshare(); if ($networkSettings->getMenu()) { @@ -117,8 +116,6 @@ class NetworkSettingsInput if ($networkSettings->getRepository()) { $this->repository = new ImageRepositoryOutput($networkSettings->getRepository()); } - - $this->validation = $networkSettings->getValidation(); } public function createOrUpdateEntity(?NetworkSettings $networkSettings = null): NetworkSettings diff --git a/src/Entity/OrganizationalUnit.php b/src/Entity/OrganizationalUnit.php index 8e29524..75b5849 100644 --- a/src/Entity/OrganizationalUnit.php +++ b/src/Entity/OrganizationalUnit.php @@ -347,7 +347,6 @@ class OrganizationalUnit extends AbstractEntity foreach ($this->getClients() as $client) { $client->setMenu($networkSettings->getMenu()); $client->setHardwareProfile($networkSettings->getHardwareProfile()); - $client->setValidation($networkSettings->getValidation()); } foreach ($this->getOrganizationalUnits() as $childUnit) {