Skip to content

Commit

Permalink
Change some missing urls
Browse files Browse the repository at this point in the history
  • Loading branch information
AhmedHanafy725 committed May 26, 2024
1 parent c0389ff commit efabfc2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions HowToLocalDev.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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/",
};
```

Expand Down Expand Up @@ -83,7 +83,7 @@ class AppConfigLocal extends AppConfigImpl {
}
String openKycApiUrl() {
return "https://openkyc.staging.jimber.org";
return "https://openkyc.staging.threefold.me";
}
String threeBotApiUrl() {
Expand All @@ -99,7 +99,7 @@ class AppConfigLocal extends AppConfigImpl {
}
String wizardUrl() {
return 'https://wizard.staging.jimber.org/';
return 'https://wizard.staging.threefold.me/';
}
}
```
Expand Down
6 changes: 3 additions & 3 deletions app/lib/apps/news/news_config.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand All @@ -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() {
Expand All @@ -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() {
Expand Down
6 changes: 3 additions & 3 deletions app/lib/apps/wallet/wallet_config.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand All @@ -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() {
Expand All @@ -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() {
Expand Down
4 changes: 2 additions & 2 deletions frontend/public/config.testing.js
Original file line number Diff line number Diff line change
@@ -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://'
})

0 comments on commit efabfc2

Please sign in to comment.