From 5319d5565eb2fb455cd5e91043562aa9a83c0391 Mon Sep 17 00:00:00 2001 From: amentis Date: Wed, 5 Jun 2024 16:38:27 +0300 Subject: [PATCH 1/3] notification template file changes --- .../src/main/resources/config/permissions.yml | 8 ++++---- .../filetransformer/FileTransformerServiceImpl.java | 4 ++-- .../src/main/resources/config/permissions.yml | 10 +++++----- .../contactsupport/email/subject.en.txt | 2 +- .../descriptionfinalised/email/subject.en.txt | 2 +- .../descriptionfinalised/inapp/subject.en.txt | 2 +- .../descriptionmodified/email/subject.en.txt | 2 +- .../descriptionmodified/inapp/subject.en.txt | 2 +- .../descriptiontemplateinvitation/email/subject.en.txt | 2 +- .../descriptiontemplateinvitation/inapp/subject.en.txt | 2 +- .../mergeacountconfirmation/email/subject.en.txt | 2 +- .../mergeacountconfirmation/inapp/subject.en.txt | 2 +- .../plandeposit/email/subject.en.txt | 2 +- .../plandeposit/inapp/subject.en.txt | 2 +- .../planfinalised/email/subject.en.txt | 2 +- .../planfinalised/inapp/subject.en.txt | 2 +- .../planinvitationexistinguser/email/subject.en.txt | 2 +- .../planinvitationexistinguser/inapp/subject.en.txt | 2 +- .../planinvitationexternaluser/email/subject.en.txt | 2 +- .../planmodified/email/subject.en.txt | 2 +- .../planmodified/inapp/subject.en.txt | 2 +- .../publiccontactsupport/email/subject.en.txt | 2 +- .../removecredentialconfirmation/email/subject.en.txt | 2 +- .../removecredentialconfirmation/inapp/subject.en.txt | 2 +- 24 files changed, 32 insertions(+), 32 deletions(-) diff --git a/annotation-service/annotation-web/src/main/resources/config/permissions.yml b/annotation-service/annotation-web/src/main/resources/config/permissions.yml index a7b23b9e9..37cb3d25e 100644 --- a/annotation-service/annotation-web/src/main/resources/config/permissions.yml +++ b/annotation-service/annotation-web/src/main/resources/config/permissions.yml @@ -39,7 +39,7 @@ permissions: roles: - Admin clients: [ ] - allowAnonymous: true + allowAnonymous: false allowAuthenticated: false EditUser: roles: [ ] @@ -59,7 +59,7 @@ permissions: - TenantAdmin entityAffiliated: true clients: [ ] - allowAnonymous: true + allowAnonymous: false allowAuthenticated: false NewAnnotation: roles: @@ -67,14 +67,14 @@ permissions: - TenantAdmin entityAffiliated: true clients: [ ] - allowAnonymous: true + allowAnonymous: false allowAuthenticated: false EditAnnotation: roles: - Admin - TenantAdmin clients: [ ] - allowAnonymous: true + allowAnonymous: false allowAuthenticated: false DeleteAnnotation: roles: diff --git a/backend/core/src/main/java/org/opencdmp/service/filetransformer/FileTransformerServiceImpl.java b/backend/core/src/main/java/org/opencdmp/service/filetransformer/FileTransformerServiceImpl.java index f9129176b..82487afb1 100644 --- a/backend/core/src/main/java/org/opencdmp/service/filetransformer/FileTransformerServiceImpl.java +++ b/backend/core/src/main/java/org/opencdmp/service/filetransformer/FileTransformerServiceImpl.java @@ -235,7 +235,7 @@ public class FileTransformerServiceImpl implements FileTransformerService { @Override public org.opencdmp.model.file.FileEnvelope exportDmp(UUID dmpId, String repositoryId, String format) throws InvalidAlgorithmParameterException, NoSuchPaddingException, IllegalBlockSizeException, InvalidApplicationException, NoSuchAlgorithmException, BadPaddingException, InvalidKeyException { - this.authorizationService.authorizeForce(Permission.EditDmp); + this.authorizationService.authorizeForce(Permission.ExportDmp); //GK: First get the right client FileTransformerRepository repository = this.getRepository(repositoryId); if (repository == null) throw new MyNotFoundException(this.messageSource.getMessage("General_ItemNotFound", new Object[]{format, FileTransformerRepository.class.getSimpleName()}, LocaleContextHolder.getLocale())); @@ -255,7 +255,7 @@ public class FileTransformerServiceImpl implements FileTransformerService { @Override public org.opencdmp.model.file.FileEnvelope exportDescription(UUID descriptionId, String repositoryId, String format) throws InvalidAlgorithmParameterException, NoSuchPaddingException, IllegalBlockSizeException, InvalidApplicationException, NoSuchAlgorithmException, BadPaddingException, InvalidKeyException { - this.authorizationService.authorizeForce(Permission.EditDmp); + this.authorizationService.authorizeForce(Permission.ExportDescription); //GK: First get the right client FileTransformerRepository repository = this.getRepository(repositoryId); if (repository == null) throw new MyNotFoundException(this.messageSource.getMessage("General_ItemNotFound", new Object[]{format, FileTransformerRepository.class.getSimpleName()}, LocaleContextHolder.getLocale())); diff --git a/notification-service/notification-web/src/main/resources/config/permissions.yml b/notification-service/notification-web/src/main/resources/config/permissions.yml index 2e8452a4a..bd754c750 100644 --- a/notification-service/notification-web/src/main/resources/config/permissions.yml +++ b/notification-service/notification-web/src/main/resources/config/permissions.yml @@ -32,7 +32,7 @@ permissions: roles: - Admin clients: [ ] - allowAnonymous: true + allowAnonymous: false allowAuthenticated: false EditUser: roles: [] @@ -51,7 +51,7 @@ permissions: - Admin - InstallationAdmin clients: [ "opencdmp-api-dev" ] - allowAnonymous: true + allowAnonymous: false allowAuthenticated: false EditUserContactInfo: roles: @@ -73,13 +73,13 @@ permissions: roles: - Admin clients: [ ] - allowAnonymous: true + allowAnonymous: false allowAuthenticated: false EditNotification: roles: - Admin clients: [ ] - allowAnonymous: true + allowAnonymous: false allowAuthenticated: false DeleteNotification: roles: @@ -115,7 +115,7 @@ permissions: roles: - Admin clients: [ ] - allowAnonymous: true + allowAnonymous: false allowAuthenticated: false EditUserNotificationPreference: roles: diff --git a/notification-service/notification-web/src/main/resources/notification_templates/contactsupport/email/subject.en.txt b/notification-service/notification-web/src/main/resources/notification_templates/contactsupport/email/subject.en.txt index 052f2db8c..9140c4034 100644 --- a/notification-service/notification-web/src/main/resources/notification_templates/contactsupport/email/subject.en.txt +++ b/notification-service/notification-web/src/main/resources/notification_templates/contactsupport/email/subject.en.txt @@ -1 +1 @@ -ARGOS - {subject} \ No newline at end of file +OpenCDMP - {subject} \ No newline at end of file diff --git a/notification-service/notification-web/src/main/resources/notification_templates/descriptionfinalised/email/subject.en.txt b/notification-service/notification-web/src/main/resources/notification_templates/descriptionfinalised/email/subject.en.txt index 76e26cfec..4809b12c1 100644 --- a/notification-service/notification-web/src/main/resources/notification_templates/descriptionfinalised/email/subject.en.txt +++ b/notification-service/notification-web/src/main/resources/notification_templates/descriptionfinalised/email/subject.en.txt @@ -1 +1 @@ -ARGOS - Description Finalised \ No newline at end of file +OpenCDMP - Description Finalised \ No newline at end of file diff --git a/notification-service/notification-web/src/main/resources/notification_templates/descriptionfinalised/inapp/subject.en.txt b/notification-service/notification-web/src/main/resources/notification_templates/descriptionfinalised/inapp/subject.en.txt index 76e26cfec..4809b12c1 100644 --- a/notification-service/notification-web/src/main/resources/notification_templates/descriptionfinalised/inapp/subject.en.txt +++ b/notification-service/notification-web/src/main/resources/notification_templates/descriptionfinalised/inapp/subject.en.txt @@ -1 +1 @@ -ARGOS - Description Finalised \ No newline at end of file +OpenCDMP - Description Finalised \ No newline at end of file diff --git a/notification-service/notification-web/src/main/resources/notification_templates/descriptionmodified/email/subject.en.txt b/notification-service/notification-web/src/main/resources/notification_templates/descriptionmodified/email/subject.en.txt index 440dc3c4f..a40529163 100644 --- a/notification-service/notification-web/src/main/resources/notification_templates/descriptionmodified/email/subject.en.txt +++ b/notification-service/notification-web/src/main/resources/notification_templates/descriptionmodified/email/subject.en.txt @@ -1 +1 @@ -ARGOS - Description Modified \ No newline at end of file +OpenCDMP - Description Modified \ No newline at end of file diff --git a/notification-service/notification-web/src/main/resources/notification_templates/descriptionmodified/inapp/subject.en.txt b/notification-service/notification-web/src/main/resources/notification_templates/descriptionmodified/inapp/subject.en.txt index 440dc3c4f..a40529163 100644 --- a/notification-service/notification-web/src/main/resources/notification_templates/descriptionmodified/inapp/subject.en.txt +++ b/notification-service/notification-web/src/main/resources/notification_templates/descriptionmodified/inapp/subject.en.txt @@ -1 +1 @@ -ARGOS - Description Modified \ No newline at end of file +OpenCDMP - Description Modified \ No newline at end of file diff --git a/notification-service/notification-web/src/main/resources/notification_templates/descriptiontemplateinvitation/email/subject.en.txt b/notification-service/notification-web/src/main/resources/notification_templates/descriptiontemplateinvitation/email/subject.en.txt index f634a5493..61ecc7bfd 100644 --- a/notification-service/notification-web/src/main/resources/notification_templates/descriptiontemplateinvitation/email/subject.en.txt +++ b/notification-service/notification-web/src/main/resources/notification_templates/descriptiontemplateinvitation/email/subject.en.txt @@ -1 +1 @@ -ARGOS - Description Template Invite \ No newline at end of file +OpenCDMP - Description Template Invite \ No newline at end of file diff --git a/notification-service/notification-web/src/main/resources/notification_templates/descriptiontemplateinvitation/inapp/subject.en.txt b/notification-service/notification-web/src/main/resources/notification_templates/descriptiontemplateinvitation/inapp/subject.en.txt index f634a5493..61ecc7bfd 100644 --- a/notification-service/notification-web/src/main/resources/notification_templates/descriptiontemplateinvitation/inapp/subject.en.txt +++ b/notification-service/notification-web/src/main/resources/notification_templates/descriptiontemplateinvitation/inapp/subject.en.txt @@ -1 +1 @@ -ARGOS - Description Template Invite \ No newline at end of file +OpenCDMP - Description Template Invite \ No newline at end of file diff --git a/notification-service/notification-web/src/main/resources/notification_templates/mergeacountconfirmation/email/subject.en.txt b/notification-service/notification-web/src/main/resources/notification_templates/mergeacountconfirmation/email/subject.en.txt index 3c52e9249..3c94ab18d 100644 --- a/notification-service/notification-web/src/main/resources/notification_templates/mergeacountconfirmation/email/subject.en.txt +++ b/notification-service/notification-web/src/main/resources/notification_templates/mergeacountconfirmation/email/subject.en.txt @@ -1 +1 @@ -ARGOS - Merge Account Confirmation \ No newline at end of file +OpenCDMP - Merge Account Confirmation \ No newline at end of file diff --git a/notification-service/notification-web/src/main/resources/notification_templates/mergeacountconfirmation/inapp/subject.en.txt b/notification-service/notification-web/src/main/resources/notification_templates/mergeacountconfirmation/inapp/subject.en.txt index 3c52e9249..3c94ab18d 100644 --- a/notification-service/notification-web/src/main/resources/notification_templates/mergeacountconfirmation/inapp/subject.en.txt +++ b/notification-service/notification-web/src/main/resources/notification_templates/mergeacountconfirmation/inapp/subject.en.txt @@ -1 +1 @@ -ARGOS - Merge Account Confirmation \ No newline at end of file +OpenCDMP - Merge Account Confirmation \ No newline at end of file diff --git a/notification-service/notification-web/src/main/resources/notification_templates/plandeposit/email/subject.en.txt b/notification-service/notification-web/src/main/resources/notification_templates/plandeposit/email/subject.en.txt index 9ec5544a9..a9831981b 100644 --- a/notification-service/notification-web/src/main/resources/notification_templates/plandeposit/email/subject.en.txt +++ b/notification-service/notification-web/src/main/resources/notification_templates/plandeposit/email/subject.en.txt @@ -1 +1 @@ -ARGOS - Plan Deposit \ No newline at end of file +OpenCDMP - Plan Deposit \ No newline at end of file diff --git a/notification-service/notification-web/src/main/resources/notification_templates/plandeposit/inapp/subject.en.txt b/notification-service/notification-web/src/main/resources/notification_templates/plandeposit/inapp/subject.en.txt index 9ec5544a9..a9831981b 100644 --- a/notification-service/notification-web/src/main/resources/notification_templates/plandeposit/inapp/subject.en.txt +++ b/notification-service/notification-web/src/main/resources/notification_templates/plandeposit/inapp/subject.en.txt @@ -1 +1 @@ -ARGOS - Plan Deposit \ No newline at end of file +OpenCDMP - Plan Deposit \ No newline at end of file diff --git a/notification-service/notification-web/src/main/resources/notification_templates/planfinalised/email/subject.en.txt b/notification-service/notification-web/src/main/resources/notification_templates/planfinalised/email/subject.en.txt index c7de831d7..0f3ce0f3e 100644 --- a/notification-service/notification-web/src/main/resources/notification_templates/planfinalised/email/subject.en.txt +++ b/notification-service/notification-web/src/main/resources/notification_templates/planfinalised/email/subject.en.txt @@ -1 +1 @@ -ARGOS - Plan Finalised \ No newline at end of file +OpenCDMP - Plan Finalised \ No newline at end of file diff --git a/notification-service/notification-web/src/main/resources/notification_templates/planfinalised/inapp/subject.en.txt b/notification-service/notification-web/src/main/resources/notification_templates/planfinalised/inapp/subject.en.txt index c7de831d7..0f3ce0f3e 100644 --- a/notification-service/notification-web/src/main/resources/notification_templates/planfinalised/inapp/subject.en.txt +++ b/notification-service/notification-web/src/main/resources/notification_templates/planfinalised/inapp/subject.en.txt @@ -1 +1 @@ -ARGOS - Plan Finalised \ No newline at end of file +OpenCDMP - Plan Finalised \ No newline at end of file diff --git a/notification-service/notification-web/src/main/resources/notification_templates/planinvitationexistinguser/email/subject.en.txt b/notification-service/notification-web/src/main/resources/notification_templates/planinvitationexistinguser/email/subject.en.txt index 2c36d1524..54de9f6b1 100644 --- a/notification-service/notification-web/src/main/resources/notification_templates/planinvitationexistinguser/email/subject.en.txt +++ b/notification-service/notification-web/src/main/resources/notification_templates/planinvitationexistinguser/email/subject.en.txt @@ -1 +1 @@ -ARGOS - Data Management Plan Invite \ No newline at end of file +OpenCDMP - Plan Invite \ No newline at end of file diff --git a/notification-service/notification-web/src/main/resources/notification_templates/planinvitationexistinguser/inapp/subject.en.txt b/notification-service/notification-web/src/main/resources/notification_templates/planinvitationexistinguser/inapp/subject.en.txt index 2c36d1524..54de9f6b1 100644 --- a/notification-service/notification-web/src/main/resources/notification_templates/planinvitationexistinguser/inapp/subject.en.txt +++ b/notification-service/notification-web/src/main/resources/notification_templates/planinvitationexistinguser/inapp/subject.en.txt @@ -1 +1 @@ -ARGOS - Data Management Plan Invite \ No newline at end of file +OpenCDMP - Plan Invite \ No newline at end of file diff --git a/notification-service/notification-web/src/main/resources/notification_templates/planinvitationexternaluser/email/subject.en.txt b/notification-service/notification-web/src/main/resources/notification_templates/planinvitationexternaluser/email/subject.en.txt index 2c36d1524..54de9f6b1 100644 --- a/notification-service/notification-web/src/main/resources/notification_templates/planinvitationexternaluser/email/subject.en.txt +++ b/notification-service/notification-web/src/main/resources/notification_templates/planinvitationexternaluser/email/subject.en.txt @@ -1 +1 @@ -ARGOS - Data Management Plan Invite \ No newline at end of file +OpenCDMP - Plan Invite \ No newline at end of file diff --git a/notification-service/notification-web/src/main/resources/notification_templates/planmodified/email/subject.en.txt b/notification-service/notification-web/src/main/resources/notification_templates/planmodified/email/subject.en.txt index 0c011a7d4..df045f3ca 100644 --- a/notification-service/notification-web/src/main/resources/notification_templates/planmodified/email/subject.en.txt +++ b/notification-service/notification-web/src/main/resources/notification_templates/planmodified/email/subject.en.txt @@ -1 +1 @@ -ARGOS - Plan Modified \ No newline at end of file +OpenCDMP - Plan Modified \ No newline at end of file diff --git a/notification-service/notification-web/src/main/resources/notification_templates/planmodified/inapp/subject.en.txt b/notification-service/notification-web/src/main/resources/notification_templates/planmodified/inapp/subject.en.txt index 0c011a7d4..df045f3ca 100644 --- a/notification-service/notification-web/src/main/resources/notification_templates/planmodified/inapp/subject.en.txt +++ b/notification-service/notification-web/src/main/resources/notification_templates/planmodified/inapp/subject.en.txt @@ -1 +1 @@ -ARGOS - Plan Modified \ No newline at end of file +OpenCDMP - Plan Modified \ No newline at end of file diff --git a/notification-service/notification-web/src/main/resources/notification_templates/publiccontactsupport/email/subject.en.txt b/notification-service/notification-web/src/main/resources/notification_templates/publiccontactsupport/email/subject.en.txt index 052f2db8c..9140c4034 100644 --- a/notification-service/notification-web/src/main/resources/notification_templates/publiccontactsupport/email/subject.en.txt +++ b/notification-service/notification-web/src/main/resources/notification_templates/publiccontactsupport/email/subject.en.txt @@ -1 +1 @@ -ARGOS - {subject} \ No newline at end of file +OpenCDMP - {subject} \ No newline at end of file diff --git a/notification-service/notification-web/src/main/resources/notification_templates/removecredentialconfirmation/email/subject.en.txt b/notification-service/notification-web/src/main/resources/notification_templates/removecredentialconfirmation/email/subject.en.txt index e957d468f..d942b4dbe 100644 --- a/notification-service/notification-web/src/main/resources/notification_templates/removecredentialconfirmation/email/subject.en.txt +++ b/notification-service/notification-web/src/main/resources/notification_templates/removecredentialconfirmation/email/subject.en.txt @@ -1 +1 @@ -ARGOS - Unlink Email Confirmation \ No newline at end of file +OpenCDMP - Unlink Email Confirmation \ No newline at end of file diff --git a/notification-service/notification-web/src/main/resources/notification_templates/removecredentialconfirmation/inapp/subject.en.txt b/notification-service/notification-web/src/main/resources/notification_templates/removecredentialconfirmation/inapp/subject.en.txt index e957d468f..d942b4dbe 100644 --- a/notification-service/notification-web/src/main/resources/notification_templates/removecredentialconfirmation/inapp/subject.en.txt +++ b/notification-service/notification-web/src/main/resources/notification_templates/removecredentialconfirmation/inapp/subject.en.txt @@ -1 +1 @@ -ARGOS - Unlink Email Confirmation \ No newline at end of file +OpenCDMP - Unlink Email Confirmation \ No newline at end of file From 70b6012dbc9b26043c9a6ba92ccfd9c5a128f1c0 Mon Sep 17 00:00:00 2001 From: amentis Date: Wed, 5 Jun 2024 16:42:36 +0300 Subject: [PATCH 2/3] notification permissions changes --- .../removecredentialconfirmation/email/body.en.html | 2 +- .../removecredentialconfirmation/inapp/body.en.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/notification-service/notification-web/src/main/resources/notification_templates/removecredentialconfirmation/email/body.en.html b/notification-service/notification-web/src/main/resources/notification_templates/removecredentialconfirmation/email/body.en.html index 3f0b3ac2d..8affc9f2e 100644 --- a/notification-service/notification-web/src/main/resources/notification_templates/removecredentialconfirmation/email/body.en.html +++ b/notification-service/notification-web/src/main/resources/notification_templates/removecredentialconfirmation/email/body.en.html @@ -261,7 +261,7 @@ OpenCDMP -

You have made a request to unlink your email account in ARGOS.

+

You have made a request to unlink your email account in OpenCDMP.

Please confirm that you want to unlink your {email} account.
The link will expire in {expiration_time}.

diff --git a/notification-service/notification-web/src/main/resources/notification_templates/removecredentialconfirmation/inapp/body.en.html b/notification-service/notification-web/src/main/resources/notification_templates/removecredentialconfirmation/inapp/body.en.html index 0db960f3c..4a3d5dd30 100644 --- a/notification-service/notification-web/src/main/resources/notification_templates/removecredentialconfirmation/inapp/body.en.html +++ b/notification-service/notification-web/src/main/resources/notification_templates/removecredentialconfirmation/inapp/body.en.html @@ -6,7 +6,7 @@ OpenCDMP -

You have made a request to unlink your email account in ARGOS.

+

You have made a request to unlink your email account in OpenCDMP.

Please confirm that you want to unlink your {email} account.
The link will expire in {expiration_time}.

Confirm Unlink Request From f1d899ea0e1585e3513b62cba91184a0f7e0a972 Mon Sep 17 00:00:00 2001 From: sgiannopoulos Date: Wed, 5 Jun 2024 17:03:19 +0300 Subject: [PATCH 3/3] bug fixes --- .../src/main/java/gr/cite/annotation/query/AnnotationQuery.java | 2 +- .../src/main/java/gr/cite/annotation/query/EntityUserQuery.java | 2 +- .../src/main/java/gr/cite/annotation/query/QueueInboxQuery.java | 2 +- .../main/java/gr/cite/annotation/query/QueueOutboxQuery.java | 2 +- .../src/main/java/gr/cite/annotation/query/TenantQuery.java | 2 +- .../src/main/java/gr/cite/annotation/query/TenantUserQuery.java | 2 +- .../main/java/gr/cite/annotation/query/UserCredentialQuery.java | 2 +- .../src/main/java/gr/cite/annotation/query/UserQuery.java | 2 +- .../main/java/org/opencdmp/query/ActionConfirmationQuery.java | 2 +- .../core/src/main/java/org/opencdmp/query/DescriptionQuery.java | 2 +- .../main/java/org/opencdmp/query/DescriptionReferenceQuery.java | 2 +- .../src/main/java/org/opencdmp/query/DescriptionTagQuery.java | 2 +- .../main/java/org/opencdmp/query/DescriptionTemplateQuery.java | 2 +- .../java/org/opencdmp/query/DescriptionTemplateTypeQuery.java | 2 +- .../src/main/java/org/opencdmp/query/DmpBlueprintQuery.java | 2 +- .../java/org/opencdmp/query/DmpDescriptionTemplateQuery.java | 2 +- backend/core/src/main/java/org/opencdmp/query/DmpQuery.java | 2 +- .../src/main/java/org/opencdmp/query/DmpReferenceQuery.java | 2 +- backend/core/src/main/java/org/opencdmp/query/DmpUserQuery.java | 2 +- .../core/src/main/java/org/opencdmp/query/EntityDoiQuery.java | 2 +- .../core/src/main/java/org/opencdmp/query/LanguageQuery.java | 2 +- backend/core/src/main/java/org/opencdmp/query/LockQuery.java | 2 +- .../src/main/java/org/opencdmp/query/PrefillingSourceQuery.java | 2 +- .../core/src/main/java/org/opencdmp/query/QueueInboxQuery.java | 2 +- .../core/src/main/java/org/opencdmp/query/QueueOutboxQuery.java | 2 +- .../core/src/main/java/org/opencdmp/query/ReferenceQuery.java | 2 +- .../src/main/java/org/opencdmp/query/ReferenceTypeQuery.java | 2 +- .../core/src/main/java/org/opencdmp/query/StorageFileQuery.java | 2 +- .../main/java/org/opencdmp/query/SupportiveMaterialQuery.java | 2 +- backend/core/src/main/java/org/opencdmp/query/TagQuery.java | 2 +- .../main/java/org/opencdmp/query/TenantConfigurationQuery.java | 2 +- backend/core/src/main/java/org/opencdmp/query/TenantQuery.java | 2 +- .../core/src/main/java/org/opencdmp/query/TenantUserQuery.java | 2 +- .../src/main/java/org/opencdmp/query/UserContactInfoQuery.java | 2 +- .../src/main/java/org/opencdmp/query/UserCredentialQuery.java | 2 +- .../java/org/opencdmp/query/UserDescriptionTemplateQuery.java | 2 +- backend/core/src/main/java/org/opencdmp/query/UserQuery.java | 2 +- .../core/src/main/java/org/opencdmp/query/UserRoleQuery.java | 2 +- .../src/main/java/org/opencdmp/query/UserSettingsQuery.java | 2 +- .../java/gr/cite/notification/query/InAppNotificationQuery.java | 2 +- .../main/java/gr/cite/notification/query/NotificationQuery.java | 2 +- .../gr/cite/notification/query/NotificationTemplateQuery.java | 2 +- .../main/java/gr/cite/notification/query/QueueInboxQuery.java | 2 +- .../main/java/gr/cite/notification/query/QueueOutboxQuery.java | 2 +- .../gr/cite/notification/query/TenantConfigurationQuery.java | 2 +- .../src/main/java/gr/cite/notification/query/TenantQuery.java | 2 +- .../main/java/gr/cite/notification/query/TenantUserQuery.java | 2 +- .../java/gr/cite/notification/query/UserContactInfoQuery.java | 2 +- .../java/gr/cite/notification/query/UserCredentialQuery.java | 2 +- .../notification/query/UserNotificationPreferenceQuery.java | 2 +- .../src/main/java/gr/cite/notification/query/UserQuery.java | 2 +- .../src/main/java/gr/cite/notification/query/UserRoleQuery.java | 2 +- 52 files changed, 52 insertions(+), 52 deletions(-) diff --git a/annotation-service/annotation/src/main/java/gr/cite/annotation/query/AnnotationQuery.java b/annotation-service/annotation/src/main/java/gr/cite/annotation/query/AnnotationQuery.java index 90b83f788..76546c9e4 100644 --- a/annotation-service/annotation/src/main/java/gr/cite/annotation/query/AnnotationQuery.java +++ b/annotation-service/annotation/src/main/java/gr/cite/annotation/query/AnnotationQuery.java @@ -180,7 +180,7 @@ public class AnnotationQuery extends QueryBase { } public AnnotationQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/annotation-service/annotation/src/main/java/gr/cite/annotation/query/EntityUserQuery.java b/annotation-service/annotation/src/main/java/gr/cite/annotation/query/EntityUserQuery.java index c21138867..0b30dfda2 100644 --- a/annotation-service/annotation/src/main/java/gr/cite/annotation/query/EntityUserQuery.java +++ b/annotation-service/annotation/src/main/java/gr/cite/annotation/query/EntityUserQuery.java @@ -113,7 +113,7 @@ public class EntityUserQuery extends QueryBase { } public EntityUserQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/annotation-service/annotation/src/main/java/gr/cite/annotation/query/QueueInboxQuery.java b/annotation-service/annotation/src/main/java/gr/cite/annotation/query/QueueInboxQuery.java index b96a1be0a..a525c2840 100644 --- a/annotation-service/annotation/src/main/java/gr/cite/annotation/query/QueueInboxQuery.java +++ b/annotation-service/annotation/src/main/java/gr/cite/annotation/query/QueueInboxQuery.java @@ -126,7 +126,7 @@ public class QueueInboxQuery extends QueryBase { } public QueueInboxQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/annotation-service/annotation/src/main/java/gr/cite/annotation/query/QueueOutboxQuery.java b/annotation-service/annotation/src/main/java/gr/cite/annotation/query/QueueOutboxQuery.java index 58d4d2cfe..e4d100e95 100644 --- a/annotation-service/annotation/src/main/java/gr/cite/annotation/query/QueueOutboxQuery.java +++ b/annotation-service/annotation/src/main/java/gr/cite/annotation/query/QueueOutboxQuery.java @@ -131,7 +131,7 @@ public class QueueOutboxQuery extends QueryBase { } public QueueOutboxQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/annotation-service/annotation/src/main/java/gr/cite/annotation/query/TenantQuery.java b/annotation-service/annotation/src/main/java/gr/cite/annotation/query/TenantQuery.java index 1f3aaa200..7e85d0c56 100644 --- a/annotation-service/annotation/src/main/java/gr/cite/annotation/query/TenantQuery.java +++ b/annotation-service/annotation/src/main/java/gr/cite/annotation/query/TenantQuery.java @@ -74,7 +74,7 @@ public class TenantQuery extends QueryBase { } public TenantQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/annotation-service/annotation/src/main/java/gr/cite/annotation/query/TenantUserQuery.java b/annotation-service/annotation/src/main/java/gr/cite/annotation/query/TenantUserQuery.java index 5f78245bd..3730c57eb 100644 --- a/annotation-service/annotation/src/main/java/gr/cite/annotation/query/TenantUserQuery.java +++ b/annotation-service/annotation/src/main/java/gr/cite/annotation/query/TenantUserQuery.java @@ -120,7 +120,7 @@ public class TenantUserQuery extends QueryBase { } public TenantUserQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/annotation-service/annotation/src/main/java/gr/cite/annotation/query/UserCredentialQuery.java b/annotation-service/annotation/src/main/java/gr/cite/annotation/query/UserCredentialQuery.java index c4e55a1ee..ba8bd1105 100644 --- a/annotation-service/annotation/src/main/java/gr/cite/annotation/query/UserCredentialQuery.java +++ b/annotation-service/annotation/src/main/java/gr/cite/annotation/query/UserCredentialQuery.java @@ -131,7 +131,7 @@ public class UserCredentialQuery extends QueryBase { } public UserCredentialQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/annotation-service/annotation/src/main/java/gr/cite/annotation/query/UserQuery.java b/annotation-service/annotation/src/main/java/gr/cite/annotation/query/UserQuery.java index 7d81d9863..5c82f0735 100644 --- a/annotation-service/annotation/src/main/java/gr/cite/annotation/query/UserQuery.java +++ b/annotation-service/annotation/src/main/java/gr/cite/annotation/query/UserQuery.java @@ -90,7 +90,7 @@ public class UserQuery extends QueryBase { } public UserQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/backend/core/src/main/java/org/opencdmp/query/ActionConfirmationQuery.java b/backend/core/src/main/java/org/opencdmp/query/ActionConfirmationQuery.java index bdff573af..9f1829ace 100644 --- a/backend/core/src/main/java/org/opencdmp/query/ActionConfirmationQuery.java +++ b/backend/core/src/main/java/org/opencdmp/query/ActionConfirmationQuery.java @@ -164,7 +164,7 @@ public class ActionConfirmationQuery extends QueryBase } public ActionConfirmationQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/backend/core/src/main/java/org/opencdmp/query/DescriptionQuery.java b/backend/core/src/main/java/org/opencdmp/query/DescriptionQuery.java index 76dac5db4..7e6e131cf 100644 --- a/backend/core/src/main/java/org/opencdmp/query/DescriptionQuery.java +++ b/backend/core/src/main/java/org/opencdmp/query/DescriptionQuery.java @@ -217,7 +217,7 @@ public class DescriptionQuery extends QueryBase { } public DescriptionQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/backend/core/src/main/java/org/opencdmp/query/DescriptionReferenceQuery.java b/backend/core/src/main/java/org/opencdmp/query/DescriptionReferenceQuery.java index 600ca21b8..7c17660bc 100644 --- a/backend/core/src/main/java/org/opencdmp/query/DescriptionReferenceQuery.java +++ b/backend/core/src/main/java/org/opencdmp/query/DescriptionReferenceQuery.java @@ -132,7 +132,7 @@ public class DescriptionReferenceQuery extends QueryBase { } public DescriptionTagQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/backend/core/src/main/java/org/opencdmp/query/DescriptionTemplateQuery.java b/backend/core/src/main/java/org/opencdmp/query/DescriptionTemplateQuery.java index f8359d3cd..a1b6ad4aa 100644 --- a/backend/core/src/main/java/org/opencdmp/query/DescriptionTemplateQuery.java +++ b/backend/core/src/main/java/org/opencdmp/query/DescriptionTemplateQuery.java @@ -218,7 +218,7 @@ public class DescriptionTemplateQuery extends QueryBase { } public DmpBlueprintQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/backend/core/src/main/java/org/opencdmp/query/DmpDescriptionTemplateQuery.java b/backend/core/src/main/java/org/opencdmp/query/DmpDescriptionTemplateQuery.java index b557b8423..5c8346daa 100644 --- a/backend/core/src/main/java/org/opencdmp/query/DmpDescriptionTemplateQuery.java +++ b/backend/core/src/main/java/org/opencdmp/query/DmpDescriptionTemplateQuery.java @@ -156,7 +156,7 @@ public class DmpDescriptionTemplateQuery extends QueryBase { } public DmpQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/backend/core/src/main/java/org/opencdmp/query/DmpReferenceQuery.java b/backend/core/src/main/java/org/opencdmp/query/DmpReferenceQuery.java index cfe0add0f..764077ff1 100644 --- a/backend/core/src/main/java/org/opencdmp/query/DmpReferenceQuery.java +++ b/backend/core/src/main/java/org/opencdmp/query/DmpReferenceQuery.java @@ -122,7 +122,7 @@ public class DmpReferenceQuery extends QueryBase { } public DmpReferenceQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/backend/core/src/main/java/org/opencdmp/query/DmpUserQuery.java b/backend/core/src/main/java/org/opencdmp/query/DmpUserQuery.java index cc49de8cf..821e92b52 100644 --- a/backend/core/src/main/java/org/opencdmp/query/DmpUserQuery.java +++ b/backend/core/src/main/java/org/opencdmp/query/DmpUserQuery.java @@ -168,7 +168,7 @@ public class DmpUserQuery extends QueryBase { } public DmpUserQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/backend/core/src/main/java/org/opencdmp/query/EntityDoiQuery.java b/backend/core/src/main/java/org/opencdmp/query/EntityDoiQuery.java index 1d02cd234..353724b72 100644 --- a/backend/core/src/main/java/org/opencdmp/query/EntityDoiQuery.java +++ b/backend/core/src/main/java/org/opencdmp/query/EntityDoiQuery.java @@ -166,7 +166,7 @@ public class EntityDoiQuery extends QueryBase { } public EntityDoiQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/backend/core/src/main/java/org/opencdmp/query/LanguageQuery.java b/backend/core/src/main/java/org/opencdmp/query/LanguageQuery.java index 686168a06..ef7734448 100644 --- a/backend/core/src/main/java/org/opencdmp/query/LanguageQuery.java +++ b/backend/core/src/main/java/org/opencdmp/query/LanguageQuery.java @@ -110,7 +110,7 @@ public class LanguageQuery extends QueryBase { } public LanguageQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/backend/core/src/main/java/org/opencdmp/query/LockQuery.java b/backend/core/src/main/java/org/opencdmp/query/LockQuery.java index e493137a5..1c2010f39 100644 --- a/backend/core/src/main/java/org/opencdmp/query/LockQuery.java +++ b/backend/core/src/main/java/org/opencdmp/query/LockQuery.java @@ -144,7 +144,7 @@ public class LockQuery extends QueryBase { } public LockQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/backend/core/src/main/java/org/opencdmp/query/PrefillingSourceQuery.java b/backend/core/src/main/java/org/opencdmp/query/PrefillingSourceQuery.java index 1f49ce540..a6db5a2bc 100644 --- a/backend/core/src/main/java/org/opencdmp/query/PrefillingSourceQuery.java +++ b/backend/core/src/main/java/org/opencdmp/query/PrefillingSourceQuery.java @@ -93,7 +93,7 @@ public class PrefillingSourceQuery extends QueryBase { } public PrefillingSourceQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/backend/core/src/main/java/org/opencdmp/query/QueueInboxQuery.java b/backend/core/src/main/java/org/opencdmp/query/QueueInboxQuery.java index 06392b4e7..e06ba580c 100644 --- a/backend/core/src/main/java/org/opencdmp/query/QueueInboxQuery.java +++ b/backend/core/src/main/java/org/opencdmp/query/QueueInboxQuery.java @@ -126,7 +126,7 @@ public class QueueInboxQuery extends QueryBase { } public QueueInboxQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/backend/core/src/main/java/org/opencdmp/query/QueueOutboxQuery.java b/backend/core/src/main/java/org/opencdmp/query/QueueOutboxQuery.java index 2da172406..8eafb9797 100644 --- a/backend/core/src/main/java/org/opencdmp/query/QueueOutboxQuery.java +++ b/backend/core/src/main/java/org/opencdmp/query/QueueOutboxQuery.java @@ -132,7 +132,7 @@ public class QueueOutboxQuery extends QueryBase { } public QueueOutboxQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/backend/core/src/main/java/org/opencdmp/query/ReferenceQuery.java b/backend/core/src/main/java/org/opencdmp/query/ReferenceQuery.java index 457e2990c..d0732c9df 100644 --- a/backend/core/src/main/java/org/opencdmp/query/ReferenceQuery.java +++ b/backend/core/src/main/java/org/opencdmp/query/ReferenceQuery.java @@ -184,7 +184,7 @@ public class ReferenceQuery extends QueryBase { } public ReferenceQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/backend/core/src/main/java/org/opencdmp/query/ReferenceTypeQuery.java b/backend/core/src/main/java/org/opencdmp/query/ReferenceTypeQuery.java index 4a7f96e2b..b23487ba1 100644 --- a/backend/core/src/main/java/org/opencdmp/query/ReferenceTypeQuery.java +++ b/backend/core/src/main/java/org/opencdmp/query/ReferenceTypeQuery.java @@ -111,7 +111,7 @@ public class ReferenceTypeQuery extends QueryBase { } public ReferenceTypeQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/backend/core/src/main/java/org/opencdmp/query/StorageFileQuery.java b/backend/core/src/main/java/org/opencdmp/query/StorageFileQuery.java index 39710ab48..2f8b40b1b 100644 --- a/backend/core/src/main/java/org/opencdmp/query/StorageFileQuery.java +++ b/backend/core/src/main/java/org/opencdmp/query/StorageFileQuery.java @@ -118,7 +118,7 @@ public class StorageFileQuery extends QueryBase { } public StorageFileQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/backend/core/src/main/java/org/opencdmp/query/SupportiveMaterialQuery.java b/backend/core/src/main/java/org/opencdmp/query/SupportiveMaterialQuery.java index c42c2b05e..ecdd720ea 100644 --- a/backend/core/src/main/java/org/opencdmp/query/SupportiveMaterialQuery.java +++ b/backend/core/src/main/java/org/opencdmp/query/SupportiveMaterialQuery.java @@ -128,7 +128,7 @@ public class SupportiveMaterialQuery extends QueryBase } public SupportiveMaterialQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/backend/core/src/main/java/org/opencdmp/query/TagQuery.java b/backend/core/src/main/java/org/opencdmp/query/TagQuery.java index c02bd1ef6..465c53b2f 100644 --- a/backend/core/src/main/java/org/opencdmp/query/TagQuery.java +++ b/backend/core/src/main/java/org/opencdmp/query/TagQuery.java @@ -164,7 +164,7 @@ public class TagQuery extends QueryBase { } public TagQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/backend/core/src/main/java/org/opencdmp/query/TenantConfigurationQuery.java b/backend/core/src/main/java/org/opencdmp/query/TenantConfigurationQuery.java index fbe519090..f32a2c14e 100644 --- a/backend/core/src/main/java/org/opencdmp/query/TenantConfigurationQuery.java +++ b/backend/core/src/main/java/org/opencdmp/query/TenantConfigurationQuery.java @@ -126,7 +126,7 @@ public class TenantConfigurationQuery extends QueryBase { } public TenantQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/backend/core/src/main/java/org/opencdmp/query/TenantUserQuery.java b/backend/core/src/main/java/org/opencdmp/query/TenantUserQuery.java index aa69fe576..79d7f5b29 100644 --- a/backend/core/src/main/java/org/opencdmp/query/TenantUserQuery.java +++ b/backend/core/src/main/java/org/opencdmp/query/TenantUserQuery.java @@ -118,7 +118,7 @@ public class TenantUserQuery extends QueryBase { } public TenantUserQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/backend/core/src/main/java/org/opencdmp/query/UserContactInfoQuery.java b/backend/core/src/main/java/org/opencdmp/query/UserContactInfoQuery.java index 9a4f46803..ca0e6419c 100644 --- a/backend/core/src/main/java/org/opencdmp/query/UserContactInfoQuery.java +++ b/backend/core/src/main/java/org/opencdmp/query/UserContactInfoQuery.java @@ -139,7 +139,7 @@ public class UserContactInfoQuery extends QueryBase { } public UserContactInfoQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/backend/core/src/main/java/org/opencdmp/query/UserCredentialQuery.java b/backend/core/src/main/java/org/opencdmp/query/UserCredentialQuery.java index 3da2927d5..55ca85578 100644 --- a/backend/core/src/main/java/org/opencdmp/query/UserCredentialQuery.java +++ b/backend/core/src/main/java/org/opencdmp/query/UserCredentialQuery.java @@ -102,7 +102,7 @@ public class UserCredentialQuery extends QueryBase { } public UserCredentialQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/backend/core/src/main/java/org/opencdmp/query/UserDescriptionTemplateQuery.java b/backend/core/src/main/java/org/opencdmp/query/UserDescriptionTemplateQuery.java index 0e15e9753..6e6f738f0 100644 --- a/backend/core/src/main/java/org/opencdmp/query/UserDescriptionTemplateQuery.java +++ b/backend/core/src/main/java/org/opencdmp/query/UserDescriptionTemplateQuery.java @@ -127,7 +127,7 @@ public class UserDescriptionTemplateQuery extends QueryBase { } public UserQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/backend/core/src/main/java/org/opencdmp/query/UserRoleQuery.java b/backend/core/src/main/java/org/opencdmp/query/UserRoleQuery.java index 758f43fed..96852d2f6 100644 --- a/backend/core/src/main/java/org/opencdmp/query/UserRoleQuery.java +++ b/backend/core/src/main/java/org/opencdmp/query/UserRoleQuery.java @@ -129,7 +129,7 @@ public class UserRoleQuery extends QueryBase { } public UserRoleQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/backend/core/src/main/java/org/opencdmp/query/UserSettingsQuery.java b/backend/core/src/main/java/org/opencdmp/query/UserSettingsQuery.java index efc058b7f..e1758be3a 100644 --- a/backend/core/src/main/java/org/opencdmp/query/UserSettingsQuery.java +++ b/backend/core/src/main/java/org/opencdmp/query/UserSettingsQuery.java @@ -133,7 +133,7 @@ public class UserSettingsQuery extends QueryBase { } public UserSettingsQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/notification-service/notification/src/main/java/gr/cite/notification/query/InAppNotificationQuery.java b/notification-service/notification/src/main/java/gr/cite/notification/query/InAppNotificationQuery.java index 1e0df1e55..8f6ae68cd 100644 --- a/notification-service/notification/src/main/java/gr/cite/notification/query/InAppNotificationQuery.java +++ b/notification-service/notification/src/main/java/gr/cite/notification/query/InAppNotificationQuery.java @@ -162,7 +162,7 @@ public class InAppNotificationQuery extends QueryBase { } public InAppNotificationQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/notification-service/notification/src/main/java/gr/cite/notification/query/NotificationQuery.java b/notification-service/notification/src/main/java/gr/cite/notification/query/NotificationQuery.java index 4918e5ea6..037f28fde 100644 --- a/notification-service/notification/src/main/java/gr/cite/notification/query/NotificationQuery.java +++ b/notification-service/notification/src/main/java/gr/cite/notification/query/NotificationQuery.java @@ -212,7 +212,7 @@ public class NotificationQuery extends QueryBase { } public NotificationQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/notification-service/notification/src/main/java/gr/cite/notification/query/NotificationTemplateQuery.java b/notification-service/notification/src/main/java/gr/cite/notification/query/NotificationTemplateQuery.java index 439a0d808..02b416f2c 100644 --- a/notification-service/notification/src/main/java/gr/cite/notification/query/NotificationTemplateQuery.java +++ b/notification-service/notification/src/main/java/gr/cite/notification/query/NotificationTemplateQuery.java @@ -151,7 +151,7 @@ public class NotificationTemplateQuery extends QueryBase { } public QueueInboxQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/notification-service/notification/src/main/java/gr/cite/notification/query/QueueOutboxQuery.java b/notification-service/notification/src/main/java/gr/cite/notification/query/QueueOutboxQuery.java index c21d73326..5b98fbd13 100644 --- a/notification-service/notification/src/main/java/gr/cite/notification/query/QueueOutboxQuery.java +++ b/notification-service/notification/src/main/java/gr/cite/notification/query/QueueOutboxQuery.java @@ -132,7 +132,7 @@ public class QueueOutboxQuery extends QueryBase { } public QueueOutboxQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/notification-service/notification/src/main/java/gr/cite/notification/query/TenantConfigurationQuery.java b/notification-service/notification/src/main/java/gr/cite/notification/query/TenantConfigurationQuery.java index ef2f3bacf..2fb21fed7 100644 --- a/notification-service/notification/src/main/java/gr/cite/notification/query/TenantConfigurationQuery.java +++ b/notification-service/notification/src/main/java/gr/cite/notification/query/TenantConfigurationQuery.java @@ -125,7 +125,7 @@ public class TenantConfigurationQuery extends QueryBase { } public TenantQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/notification-service/notification/src/main/java/gr/cite/notification/query/TenantUserQuery.java b/notification-service/notification/src/main/java/gr/cite/notification/query/TenantUserQuery.java index 0f5a24167..0ff7c1d0d 100644 --- a/notification-service/notification/src/main/java/gr/cite/notification/query/TenantUserQuery.java +++ b/notification-service/notification/src/main/java/gr/cite/notification/query/TenantUserQuery.java @@ -120,7 +120,7 @@ public class TenantUserQuery extends QueryBase { } public TenantUserQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/notification-service/notification/src/main/java/gr/cite/notification/query/UserContactInfoQuery.java b/notification-service/notification/src/main/java/gr/cite/notification/query/UserContactInfoQuery.java index 725a0d7ac..920dd5fb8 100644 --- a/notification-service/notification/src/main/java/gr/cite/notification/query/UserContactInfoQuery.java +++ b/notification-service/notification/src/main/java/gr/cite/notification/query/UserContactInfoQuery.java @@ -160,7 +160,7 @@ public class UserContactInfoQuery extends QueryBase { } public UserContactInfoQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/notification-service/notification/src/main/java/gr/cite/notification/query/UserCredentialQuery.java b/notification-service/notification/src/main/java/gr/cite/notification/query/UserCredentialQuery.java index 59f93f1be..d4f800873 100644 --- a/notification-service/notification/src/main/java/gr/cite/notification/query/UserCredentialQuery.java +++ b/notification-service/notification/src/main/java/gr/cite/notification/query/UserCredentialQuery.java @@ -114,7 +114,7 @@ public class UserCredentialQuery extends QueryBase { } public UserCredentialQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/notification-service/notification/src/main/java/gr/cite/notification/query/UserNotificationPreferenceQuery.java b/notification-service/notification/src/main/java/gr/cite/notification/query/UserNotificationPreferenceQuery.java index 7b27218d8..3a31e03b0 100644 --- a/notification-service/notification/src/main/java/gr/cite/notification/query/UserNotificationPreferenceQuery.java +++ b/notification-service/notification/src/main/java/gr/cite/notification/query/UserNotificationPreferenceQuery.java @@ -133,7 +133,7 @@ public class UserNotificationPreferenceQuery extends QueryBase { public UserQuery enableTracking() { - this.noTracking = false; + this.noTracking = true; return this; } diff --git a/notification-service/notification/src/main/java/gr/cite/notification/query/UserRoleQuery.java b/notification-service/notification/src/main/java/gr/cite/notification/query/UserRoleQuery.java index 4e41d4744..bbfa8685d 100644 --- a/notification-service/notification/src/main/java/gr/cite/notification/query/UserRoleQuery.java +++ b/notification-service/notification/src/main/java/gr/cite/notification/query/UserRoleQuery.java @@ -131,7 +131,7 @@ public class UserRoleQuery extends QueryBase { } public UserRoleQuery disableTracking() { - this.noTracking = false; + this.noTracking = true; return this; }