From efabfc2e9ceaff027b3b4c71775da14cdb65ba7a Mon Sep 17 00:00:00 2001 From: ahmedhanafy725 Date: Sun, 26 May 2024 09:46:17 +0300 Subject: [PATCH] Change some missing urls --- HowToLocalDev.md | 8 ++++---- app/lib/apps/news/news_config.dart | 6 +++--- app/lib/apps/wallet/wallet_config.dart | 6 +++--- frontend/public/config.testing.js | 4 ++-- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/HowToLocalDev.md b/HowToLocalDev.md index df300f39..a6bef30f 100644 --- a/HowToLocalDev.md +++ b/HowToLocalDev.md @@ -10,7 +10,7 @@ export default { botFrontEnd: "http://192.168.1.2:8080", botBackend: "http://192.168.1.2:5000", - kycBackend: "https://openkyc.staging.jimber.org", + kycBackend: "https://openkyc.staging.threefold.me", redirect_url: `/callback`, appId: window.location.host, seedPhrase: @@ -32,7 +32,7 @@ export default { ```javascript export default { apiurl: "http://192.168.1.2:5000/", - openkycurl: "https://openkyc.staging.jimber.org/", + openkycurl: "https://openkyc.staging.threefold.me/", }; ``` @@ -83,7 +83,7 @@ class AppConfigLocal extends AppConfigImpl { } String openKycApiUrl() { - return "https://openkyc.staging.jimber.org"; + return "https://openkyc.staging.threefold.me"; } String threeBotApiUrl() { @@ -99,7 +99,7 @@ class AppConfigLocal extends AppConfigImpl { } String wizardUrl() { - return 'https://wizard.staging.jimber.org/'; + return 'https://wizard.staging.threefold.me/'; } } ``` diff --git a/app/lib/apps/news/news_config.dart b/app/lib/apps/news/news_config.dart index 22dd5c2a..a24d3b94 100644 --- a/app/lib/apps/news/news_config.dart +++ b/app/lib/apps/news/news_config.dart @@ -33,7 +33,7 @@ abstract class NewsConfigImpls { class NewsConfigStaging extends NewsConfigImpls { String appId() { - return 'news.threefoldconnect.jimber.org'; + return 'news.staging.threefold.me'; } String redirectUrl() { @@ -43,7 +43,7 @@ class NewsConfigStaging extends NewsConfigImpls { class NewsConfigProduction extends NewsConfigImpls { String appId() { - return 'news.threefoldconnect.jimber.org'; + return 'news.threefold.me'; } String redirectUrl() { @@ -53,7 +53,7 @@ class NewsConfigProduction extends NewsConfigImpls { class NewsConfigTesting extends NewsConfigImpls { String appId() { - return 'news.testing.jimber.org'; + return 'news.testing.threefold.me'; } String redirectUrl() { diff --git a/app/lib/apps/wallet/wallet_config.dart b/app/lib/apps/wallet/wallet_config.dart index d0f78559..b95e4acd 100644 --- a/app/lib/apps/wallet/wallet_config.dart +++ b/app/lib/apps/wallet/wallet_config.dart @@ -33,7 +33,7 @@ abstract class WalletConfigImpls { class WalletConfigStaging extends WalletConfigImpls { String appId() { - return 'wallet.staging.jimber.io'; + return 'wallet.staging.threefold.me'; } String redirectUrl() { @@ -53,7 +53,7 @@ class WalletConfigProduction extends WalletConfigImpls { class WalletConfigTesting extends WalletConfigImpls { String appId() { - return 'wallet.testing.jimber.org'; + return 'wallet.testing.threefold.me'; } String redirectUrl() { @@ -64,7 +64,7 @@ class WalletConfigTesting extends WalletConfigImpls { class WalletConfigLocal extends WalletConfigImpls { String appId() { return 'localhost:8080'; - // return 'wallet.staging.jimber.org'; + // return 'wallet.staging.threefold.me'; } String redirectUrl() { diff --git a/frontend/public/config.testing.js b/frontend/public/config.testing.js index 71ff5f44..a79cdaa6 100644 --- a/frontend/public/config.testing.js +++ b/frontend/public/config.testing.js @@ -1,5 +1,5 @@ export default ({ - apiurl: 'https://login.testing.jimber.org/', - openkycurl: 'https://openkyc.testing.jimber.org/', + apiurl: 'https://login.testing.threefold.me/', + openkycurl: 'https://openkyc.testing.threefold.me/', deeplink: 'threebot-testing://' })