Done.
This commit is contained in:
parent
a3667b2763
commit
36654416db
@ -78,12 +78,11 @@ public class Settings extends SettingsManagerImpl {
|
||||
}
|
||||
|
||||
private void loadSettingsFromFiles() {
|
||||
File emailFolder = new File(pluginFolder, "email-formats");
|
||||
newPasswordEmailMessage = readFile(emailFolder, "new_email.html");
|
||||
passwordEmailMessage = readFile(emailFolder, "email.html");
|
||||
verificationEmailMessage = readFile(emailFolder, "verification_code_email.html");
|
||||
recoveryCodeEmailMessage = readFile(emailFolder, "recovery_code_email.html");
|
||||
shutdownEmailMessage = readFile(emailFolder, "shutdown_email.html");
|
||||
newPasswordEmailMessage = readFile("new_email.html");
|
||||
passwordEmailMessage = readFile("email.html");
|
||||
verificationEmailMessage = readFile("verification_code_email.html");
|
||||
recoveryCodeEmailMessage = readFile("recovery_code_email.html");
|
||||
shutdownEmailMessage = readFile("shutdown_email.html");
|
||||
String country = readFile("GeoLite2-Country.mmdb");
|
||||
}
|
||||
|
||||
|
||||
@ -2,5 +2,5 @@ dependencies {
|
||||
compileOnly(project(":project:module-util"))
|
||||
compileOnly(libs.guava)
|
||||
// Log4J Logger (required by the console filter)
|
||||
compileOnly(rootProject.libs.apache.logging.log4j.core) // Log4J version bundled in 1.12.2
|
||||
compileOnly(libs.apache.logging.log4j.core) // Log4J version bundled in 1.12.2
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user