summaryrefslogtreecommitdiffstats
path: root/model/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'model/config.go')
-rw-r--r--model/config.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/model/config.go b/model/config.go
index 074632a67..ebd90a372 100644
--- a/model/config.go
+++ b/model/config.go
@@ -226,6 +226,7 @@ type ServiceSettings struct {
ImageProxyURL *string
ImageProxyOptions *string
EnableAPITeamDeletion *bool
+ ExperimentalEnableHardenedMode *bool
}
func (s *ServiceSettings) SetDefaults() {
@@ -458,6 +459,10 @@ func (s *ServiceSettings) SetDefaults() {
if s.EnableAPITeamDeletion == nil {
s.EnableAPITeamDeletion = NewBool(false)
}
+
+ if s.ExperimentalEnableHardenedMode == nil {
+ s.ExperimentalEnableHardenedMode = NewBool(false)
+ }
}
type ClusterSettings struct {