From 4fb20aa987ca8c68ca9d4101c7423e976e41b9f6 Mon Sep 17 00:00:00 2001 From: Benn Oshrin Date: Sat, 20 Sep 2025 08:38:39 -0400 Subject: [PATCH] Additional commit for CFM-24 --- app/plugins/EnvSource/src/Model/Entity/EnvSource.php | 2 ++ app/plugins/EnvSource/src/Model/Entity/EnvSourceIdentity.php | 2 ++ app/plugins/EnvSource/src/Model/Entity/PetitionEnvIdentity.php | 2 ++ app/plugins/OrcidSource/src/Model/Entity/OrcidSource.php | 2 ++ app/plugins/OrcidSource/src/Model/Entity/OrcidToken.php | 2 ++ app/plugins/OrcidSource/src/Model/Entity/PetitionOrcid.php | 2 ++ app/plugins/SshKeyAuthenticator/src/Model/Entity/SshKey.php | 2 ++ .../src/Model/Entity/SshKeyAuthenticator.php | 2 ++ 8 files changed, 16 insertions(+) diff --git a/app/plugins/EnvSource/src/Model/Entity/EnvSource.php b/app/plugins/EnvSource/src/Model/Entity/EnvSource.php index 70ad339ff..49d121a1d 100644 --- a/app/plugins/EnvSource/src/Model/Entity/EnvSource.php +++ b/app/plugins/EnvSource/src/Model/Entity/EnvSource.php @@ -32,6 +32,8 @@ use Cake\ORM\Entity; class EnvSource extends Entity { + use \App\Lib\Traits\EntityMetaTrait; + /** * Fields that can be mass assigned using newEntity() or patchEntity(). * diff --git a/app/plugins/EnvSource/src/Model/Entity/EnvSourceIdentity.php b/app/plugins/EnvSource/src/Model/Entity/EnvSourceIdentity.php index 1d7bf04e6..bbab90dd5 100644 --- a/app/plugins/EnvSource/src/Model/Entity/EnvSourceIdentity.php +++ b/app/plugins/EnvSource/src/Model/Entity/EnvSourceIdentity.php @@ -32,6 +32,8 @@ use Cake\ORM\Entity; class EnvSourceIdentity extends Entity { + use \App\Lib\Traits\EntityMetaTrait; + /** * Fields that can be mass assigned using newEntity() or patchEntity(). * diff --git a/app/plugins/EnvSource/src/Model/Entity/PetitionEnvIdentity.php b/app/plugins/EnvSource/src/Model/Entity/PetitionEnvIdentity.php index 6f2548680..684db2846 100644 --- a/app/plugins/EnvSource/src/Model/Entity/PetitionEnvIdentity.php +++ b/app/plugins/EnvSource/src/Model/Entity/PetitionEnvIdentity.php @@ -32,6 +32,8 @@ use Cake\ORM\Entity; class PetitionEnvIdentity extends Entity { + use \App\Lib\Traits\EntityMetaTrait; + /** * Fields that can be mass assigned using newEntity() or patchEntity(). * diff --git a/app/plugins/OrcidSource/src/Model/Entity/OrcidSource.php b/app/plugins/OrcidSource/src/Model/Entity/OrcidSource.php index 7d7dee042..55f6ba912 100644 --- a/app/plugins/OrcidSource/src/Model/Entity/OrcidSource.php +++ b/app/plugins/OrcidSource/src/Model/Entity/OrcidSource.php @@ -32,6 +32,8 @@ use Cake\ORM\Entity; class OrcidSource extends Entity { + use \App\Lib\Traits\EntityMetaTrait; + /** * Fields that can be mass assigned using newEntity() or patchEntity(). * diff --git a/app/plugins/OrcidSource/src/Model/Entity/OrcidToken.php b/app/plugins/OrcidSource/src/Model/Entity/OrcidToken.php index a816fd3c8..5ca584d67 100644 --- a/app/plugins/OrcidSource/src/Model/Entity/OrcidToken.php +++ b/app/plugins/OrcidSource/src/Model/Entity/OrcidToken.php @@ -32,6 +32,8 @@ use Cake\ORM\Entity; class OrcidToken extends Entity { + use \App\Lib\Traits\EntityMetaTrait; + /** * Fields that can be mass assigned using newEntity() or patchEntity(). * diff --git a/app/plugins/OrcidSource/src/Model/Entity/PetitionOrcid.php b/app/plugins/OrcidSource/src/Model/Entity/PetitionOrcid.php index 91adda771..fdca95859 100644 --- a/app/plugins/OrcidSource/src/Model/Entity/PetitionOrcid.php +++ b/app/plugins/OrcidSource/src/Model/Entity/PetitionOrcid.php @@ -32,6 +32,8 @@ use Cake\ORM\Entity; class PetitionOrcid extends Entity { + use \App\Lib\Traits\EntityMetaTrait; + /** * Fields that can be mass assigned using newEntity() or patchEntity(). * diff --git a/app/plugins/SshKeyAuthenticator/src/Model/Entity/SshKey.php b/app/plugins/SshKeyAuthenticator/src/Model/Entity/SshKey.php index 97e0e2093..c38f1bc20 100644 --- a/app/plugins/SshKeyAuthenticator/src/Model/Entity/SshKey.php +++ b/app/plugins/SshKeyAuthenticator/src/Model/Entity/SshKey.php @@ -32,6 +32,8 @@ use Cake\ORM\Entity; class SshKey extends Entity { + use \App\Lib\Traits\EntityMetaTrait; + /** * Fields that can be mass assigned using newEntity() or patchEntity(). * diff --git a/app/plugins/SshKeyAuthenticator/src/Model/Entity/SshKeyAuthenticator.php b/app/plugins/SshKeyAuthenticator/src/Model/Entity/SshKeyAuthenticator.php index 9eec102f6..b89c2ce77 100644 --- a/app/plugins/SshKeyAuthenticator/src/Model/Entity/SshKeyAuthenticator.php +++ b/app/plugins/SshKeyAuthenticator/src/Model/Entity/SshKeyAuthenticator.php @@ -32,6 +32,8 @@ use Cake\ORM\Entity; class SshKeyAuthenticator extends Entity { + use \App\Lib\Traits\EntityMetaTrait; + /** * Fields that can be mass assigned using newEntity() or patchEntity(). *