Removing passwords/webhooks

This commit is contained in:
Jason House
2020-08-06 16:48:11 +09:00
parent 1638e2495d
commit 80cd4a468e
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ public class EmailNotificationAgent implements NotificationAgent {
public EmailNotificationAgent(IoService ioService) {
this.ioService = ioService;
username = "jh5975";
password = "ibgbtwiwrwloecnp";
password = "";
mailTo = "jh5975@gmail.com";
mailFrom = "jh5975@gmail.com";
mailSender = getJavaMailSender();

View File

@@ -26,7 +26,7 @@ public class SlackNotificationAgent implements NotificationAgent {
public SlackNotificationAgent(IoService ioService) {
this.ioService = ioService;
this.webHookUrl = "https://hooks.slack.com/services/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";
this.webHookUrl = "";
client = new OkHttpClient.Builder()
.connectTimeout(TIMEOUT, TimeUnit.MILLISECONDS)