Skip to content

Commit

Permalink
Allow remote autofill toggling for all users (duckduckgo#1631)
Browse files Browse the repository at this point in the history
  • Loading branch information
graeme authored Apr 17, 2023
1 parent 32dfe5c commit 652526b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Core/FeatureFlag.swift
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ extension FeatureFlag: FeatureFlagSourceProviding {
case .debugMenu, .sync, .appTrackingProtection:
return .internalOnly
case .autofillCredentialInjecting:
return .remoteDevelopment(.subfeature(AutofillSubfeature.credentialsAutofill))
return .remoteReleasable(.subfeature(AutofillSubfeature.credentialsAutofill))
case .autofillCredentialsSaving:
return .remoteDevelopment(.subfeature(AutofillSubfeature.credentialsSaving))
return .remoteReleasable(.subfeature(AutofillSubfeature.credentialsSaving))
case .autofillInlineIconCredentials:
return .remoteDevelopment(.subfeature(AutofillSubfeature.inlineIconCredentials))
return .remoteReleasable(.subfeature(AutofillSubfeature.inlineIconCredentials))
case .autofillAccessCredentialManagement:
return .remoteDevelopment(.subfeature(AutofillSubfeature.accessCredentialManagement))
return .remoteReleasable(.subfeature(AutofillSubfeature.accessCredentialManagement))
}
}
}
Expand Down

0 comments on commit 652526b

Please sign in to comment.