snapadmin.enabled now defaults to false (#30)

This commit is contained in:
Francesco 2023-11-06 20:43:19 +01:00
parent 733c22ba13
commit 630be403c7
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ import tech.ailef.snapadmin.internal.InternalDbAdminConfiguration;
* H2 database which is used by SnapAdmin to store user
* settings and other information like operations history.
*/
@ConditionalOnProperty(name = "snapadmin.enabled", matchIfMissing = true)
@ConditionalOnProperty(name = "snapadmin.enabled", matchIfMissing = false)
@ComponentScan
@EnableConfigurationProperties(SnapAdminProperties.class)
@Configuration

View File

@ -30,7 +30,7 @@ public class SnapAdminProperties {
/**
* Whether SnapAdmin is enabled.
*/
public boolean enabled = true;
public boolean enabled = false;
/**
* The prefix that is prepended to all routes registered by SnapAdmin.