Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MBL-1390: Add config flag for Stripe Link #2054

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions Library/RemoteConfig/RemoteConfigFeature+Helpers.swift
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,7 @@ public func featureLoginWithOAuthEnabled() -> Bool {
public func featureUseKeychainForOAuthTokenEnabled() -> Bool {
featureEnabled(feature: .useKeychainForOAuthToken)
}

public func featureStripeLinkEnabled() -> Bool {
featureEnabled(feature: .stripeLinkEnabled)
}
2 changes: 2 additions & 0 deletions Library/RemoteConfig/RemoteConfigFeature.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ public enum RemoteConfigFeature: String, CaseIterable {
case reportThisProjectEnabled = "report_this_project"
case loginWithOAuthEnabled = "ios_oauth"
case useKeychainForOAuthToken = "use_keychain_for_oauth_token"
case stripeLinkEnabled = "stripe_link"
}

extension RemoteConfigFeature: CustomStringConvertible {
Expand All @@ -22,6 +23,7 @@ extension RemoteConfigFeature: CustomStringConvertible {
case .reportThisProjectEnabled: return "Report This Project"
case .loginWithOAuthEnabled: return "Login with OAuth"
case .useKeychainForOAuthToken: return "Use Keychain for OAuth token"
case .stripeLinkEnabled: return "Stripe Link"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ private func isFeatureEnabled(_ feature: RemoteConfigFeature) -> Bool {
return featureLoginWithOAuthEnabled()
case .useKeychainForOAuthToken:
return featureUseKeychainForOAuthTokenEnabled()
case .stripeLinkEnabled:
return featureStripeLinkEnabled()
}
}

Expand Down