Skip to content

Commit

Permalink
Add userTips feature flag (#1011)
Browse files Browse the repository at this point in the history
Task/Issue URL:
https://app.asana.com/0/72649045549333/1208381891916914/f
iOS PR:  duckduckgo/iOS#3416
macOS PR:  duckduckgo/macos-browser#3365
What kind of version bump will this require?: Minor

**Description**:
Add userTips feature flag
  • Loading branch information
Bunn authored Oct 8, 2024
1 parent b60b38b commit 4e6a8da
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ public enum PrivacyFeature: String {
case autofillSurveys
case marketplaceAdPostback
case autocompleteTabs
case networkProtection
}

/// An abstraction to be implemented by any "subfeature" of a given `PrivacyConfiguration` feature.
Expand Down Expand Up @@ -95,6 +96,16 @@ public enum DBPSubfeature: String, Equatable, PrivacySubfeature {
case freemium
}

public enum NetworkProtectionSubfeature: String, Equatable, PrivacySubfeature {
public var parent: PrivacyFeature {
.networkProtection
}

/// Display user tips for Network Protection
/// https://app.asana.com/0/72649045549333/1208231259093710/f
case userTips
}

public enum SyncSubfeature: String, PrivacySubfeature {
public var parent: PrivacyFeature {
.sync
Expand Down

0 comments on commit 4e6a8da

Please sign in to comment.