Remove config option from privacy filter subsystem

This commit is contained in:
Daniel
2023-08-24 09:45:53 +02:00
parent e5baae9bd0
commit 07995b7a4f
2 changed files with 19 additions and 15 deletions

View File

@@ -3,7 +3,6 @@ package firewall
import (
"context"
"github.com/safing/portbase/config"
"github.com/safing/portbase/log"
"github.com/safing/portbase/modules"
"github.com/safing/portbase/modules/subsystems"
@@ -22,18 +21,7 @@ func init() {
"DNS and Network Filter",
module,
"config:filter/",
&config.Option{
Name: "Privacy Filter Module",
Key: CfgOptionEnableFilterKey,
Description: "Start the Privacy Filter module. If turned off, all privacy filter protections are fully disabled on this device.",
OptType: config.OptTypeBool,
ExpertiseLevel: config.ExpertiseLevelDeveloper,
ReleaseLevel: config.ReleaseLevelStable,
DefaultValue: true,
Annotations: config.Annotations{
config.CategoryAnnotation: "General",
},
},
nil,
)
}