mirror of
https://github.com/dalbodeule/snap-admin.git
synced 2025-12-07 17:25:43 +09:00
snapadmin.enabled now defaults to false (#30)
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user