Commit 71c1f1e6 by Johannes Edmeier

Rename `spring.boot.admin.notify` to `spring.boot.admin.notify.mail`

parent b0406450
...@@ -38,8 +38,8 @@ public class MailNotifierConfiguration { ...@@ -38,8 +38,8 @@ public class MailNotifierConfiguration {
@Bean @Bean
@ConditionalOnMissingBean @ConditionalOnMissingBean
@ConditionalOnProperty(prefix = "spring.boot.admin.notify", name = "enabled", matchIfMissing = true) @ConditionalOnProperty(prefix = "spring.boot.admin.notify.mail", name = "enabled", matchIfMissing = true)
@ConfigurationProperties("spring.boot.admin.notify") @ConfigurationProperties("spring.boot.admin.notify.mail")
public MailNotifier mailNotifier() { public MailNotifier mailNotifier() {
return new MailNotifier(mailSender); return new MailNotifier(mailSender);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment