Skip to content

Commit

Permalink
MBL-1390: Add config flag for Stripe Link
Browse files Browse the repository at this point in the history
  • Loading branch information
amy-at-kickstarter committed May 7, 2024
1 parent 22230d2 commit e9ce5d6
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
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

0 comments on commit e9ce5d6

Please sign in to comment.