1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 10:13:31 +00:00

[AC-1562] Added region custom field to PayPal add credits (#5897)

* Added config service func for getting cloud region

* Updated to use `buildServerConfig`
This commit is contained in:
Conner Turnbull
2023-07-25 15:57:29 -04:00
committed by GitHub
parent 4ba9427967
commit ab6085cd88
3 changed files with 10 additions and 2 deletions

View File

@@ -10,4 +10,5 @@ export abstract class ConfigServiceAbstraction {
getFeatureFlagBool: (key: FeatureFlag, defaultValue?: boolean) => Promise<boolean>;
getFeatureFlagString: (key: FeatureFlag, defaultValue?: string) => Promise<string>;
getFeatureFlagNumber: (key: FeatureFlag, defaultValue?: number) => Promise<number>;
getCloudRegion: (defaultValue?: string) => Promise<string>;
}