Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
shtukas committed Sep 9, 2024
1 parent 2bc2fb2 commit eb09c77
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -189,9 +189,9 @@ object NotificationHandler extends CohortHandler {
// to be able to fill the email template. That distribution is given by the next section.

// SupporterPlus 2024 extension
sp2024_contribution_amount = sp2024ContributionAmountWithCurrencySymbolOpt,
sp2024_previous_combined_amount = sp2024PreviousCombinedAmountWithCurrencySymbolOpt,
sp2024_new_combined_amount = sp2024NewCombinedAmountWithCurrencySymbolOpt
sp2024_contribution_amount = sp2024ContributionAmountWithCurrencySymbolOpt.getOrElse(""),
sp2024_previous_combined_amount = sp2024PreviousCombinedAmountWithCurrencySymbolOpt.getOrElse(""),
sp2024_new_combined_amount = sp2024NewCombinedAmountWithCurrencySymbolOpt.getOrElse("")
// -------------------------------------------------------------
)
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ case class EmailPayloadSubscriberAttributes(
product_type: String,

// SupporterPlus 2024 extension (see comment below)
sp2024_contribution_amount: Option[String] = None,
sp2024_previous_combined_amount: Option[String] = None,
sp2024_new_combined_amount: Option[String] = None,
sp2024_contribution_amount: String = "",
sp2024_previous_combined_amount: String = "",
sp2024_new_combined_amount: String = "",
)

/*
Expand Down

0 comments on commit eb09c77

Please sign in to comment.