Skip to content

Commit

Permalink
Bump smoothness lib to v4.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
slominskir committed Oct 3, 2024
1 parent acfcaed commit 436068a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ repositories {

dependencies {
// No matter what smoothness weblib MUST be included in WAR (https://github.com/JeffersonLab/smoothness/issues/4)
implementation 'org.jlab:smoothness-weblib:4.3.0'
implementation 'org.jlab:smoothness-weblib:4.6.0'

// Smoothness setup should install these into Wildfly
providedCompile 'org.tuckey:urlrewritefilter:4.0.4',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ public void sendOpsNewAuthorizationEmail(String linkHostName, String comments)

EmailService emailService = new EmailService();

emailService.sendEmail(sender, sender, toCsv, subject, body, true);
emailService.sendEmail(sender, sender, toCsv, null, subject, body, true);
}

@RolesAllowed("bam-admin")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ public void sendVerificationDowngradedEmail(String body) throws UserFriendlyExce

String sender = System.getenv("BAM_EMAIL_SENDER");

emailService.sendEmail(sender, sender, toCsv, subject, body, true);
emailService.sendEmail(sender, sender, toCsv, null, subject, body, true);
}

@PermitAll
Expand Down Expand Up @@ -654,7 +654,7 @@ public void notifyAdmins(

String sender = System.getenv("BAM_EMAIL_SENDER");

emailService.sendEmail(sender, sender, toCsv, subject, body, true);
emailService.sendEmail(sender, sender, toCsv, null, subject, body, true);
}

@PermitAll
Expand All @@ -675,7 +675,7 @@ public void notifyOps(

String sender = System.getenv("BAM_EMAIL_SENDER");

emailService.sendEmail(sender, sender, toCsv, subject, body, true);
emailService.sendEmail(sender, sender, toCsv, null, subject, body, true);
LOGGER.log(Level.FINEST, "notifyOps, toCsv: {0], body: {1}", new Object[] {toCsv, body});
}

Expand Down Expand Up @@ -763,7 +763,7 @@ public void notifyGroups(

// Ensure in test env database records BAM_OWNER.WORKGROUP.LEADER_ROLE_NAME point to bogus
// group else real people will be notified.
emailService.sendEmail(sender, sender, toCsv, subject, body, true);
emailService.sendEmail(sender, sender, toCsv, null, subject, body, true);
}
}
}
Expand Down

0 comments on commit 436068a

Please sign in to comment.