Skip to content

Commit 20e50af

Browse files
authored
Merge pull request #368 from navikt/Anonymisere-ekstra-informasjon-fra-påmeldingsskjema
Anonymisere ekstra informasjon fra påmeldingsskjema
2 parents 53e6e3f + 79aca20 commit 20e50af

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

force-app/main/default/classes/CourseScheduledDeleteContacts.cls

+3
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,9 @@ public without sharing class CourseScheduledDeleteContacts {
7676
List<CourseRegistration__c> crListToUpdate = new List<CourseRegistration__c>();
7777
for (CourseRegistration__c cr : courseRegistrationsToClean) {
7878
cr.CourseParticipant__c = null;
79+
cr.AdditionalInformation__c = null;
80+
cr.Allergies__c = null;
81+
7982
crListToUpdate.add(cr);
8083
}
8184
update crListToUpdate;

0 commit comments

Comments
 (0)