-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement keyword-based dynamic text replacement #657
base: main
Are you sure you want to change the base?
Conversation
…ords are used in the template.
…ing an order of any type
…alSecurityNumber is set at a time.
…y usage in client code.
…ing national identity and organization numbers
…and national identity numbers.
…ional identity number in the same request.
@@ -13,7 +13,7 @@ | |||
"EnableDBConnection": true | |||
}, | |||
"NotificationConfig": { | |||
"DefaultEmailFromAddress": "noreply@altinn.no", | |||
"DefaultEmailFromAddress": "noreply@altinn.cloud", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This might cause issues in tt02 and production. Make sure we add correct values for those environments in the values file.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the values.yaml
file has the following value:
[email protected]
for the environments tt02 and prod.
[email protected]
for the environments development, at21, at22, at23, at24 and yt01.
… PartyDetailsLookupRequest class across diverse scenarios.
…re defined as non-nullable.
/// A task that represents the asynchronous operation. | ||
/// The task result contains a list of <see cref="PartyDetails"/> representing the details of the specified organizations. | ||
/// </returns> | ||
public async Task<List<PartyDetails>> GetPartyDetailsForOrganizations(List<string> organizationNumbers) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Names lookup allows a mix of organization and national identity numbers in the same request. I think splitting them in separate methods is unnecessary.
Quality Gate passedIssues Measures |
Description
This pull request introduces support for placeholder keywords in notification texts, enabling dynamic personalization based on recipient-specific data. These placeholders allow us to dynamically replace predefined keywords in text with the corresponding recipient's information during runtime.
Related Issue(s)
Verification
Documentation