Skip to content

Commit

Permalink
Update services' urls
Browse files Browse the repository at this point in the history
  • Loading branch information
AhmedHanafy725 committed May 26, 2024
1 parent f288a93 commit 54f49b9
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 22 deletions.
40 changes: 20 additions & 20 deletions app/lib/app_config.dart
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class AppConfigProduction extends AppConfigImpl {
}

String openKycApiUrl() {
return "https://openkyc.live";
return "https://openkyc.threefold.me";
}

String threeBotApiUrl() {
Expand All @@ -92,90 +92,90 @@ class AppConfigProduction extends AppConfigImpl {
}

String wizardUrl() {
return 'https://wizard.jimber.org/';
return 'https://wizard.threefold.me/';
}

String pKidUrl() {
return 'https://pkid.jimber.org/v1';
return 'https://pkid.threefold.me/v1';
}

Map<String, String> flagSmithConfig() {
return {
'url': 'https://flagsmith.jimber.io/api/v1/',
'url': 'https://flagsmith.threefold.me/api/v1/',
'apiKey': 'BuzktmbcnMJ77vznU7WhJB'
};
}
}

class AppConfigStaging extends AppConfigImpl {
String baseUrl() {
return "login.staging.jimber.io";
return "login.staging.threefold.me";
}

String openKycApiUrl() {
return 'https://openkyc.staging.jimber.io';
return 'https://kyc.staging.threefold.me';
}

String threeBotApiUrl() {
return "https://login.staging.jimber.io/api";
return "https://login.staging.threefold.me/api";
}

String threeBotFrontEndUrl() {
return "https://login.staging.jimber.io/";
return "https://login.staging.threefold.me/";
}

String threeBotSocketUrl() {
return "wss://login.staging.jimber.io";
return "wss://login.staging.threefold.me";
}

String wizardUrl() {
return 'https://wizard.staging.jimber.io/';
return 'https://wizard.staging.threefold.me/';
}

String pKidUrl() {
return 'https://pkid.staging.jimber.io/v1';
return 'https://pkid.staging.threefold.me/v1';
}

Map<String, String> flagSmithConfig() {
return {
'url': 'https://flagsmith.jimber.io/api/v1/',
'url': 'https://flagsmith.threefold.me/api/v1/',
'apiKey': 'n6YyxDdrePqwAF49KCYx7S'
};
}
}

class AppConfigTesting extends AppConfigImpl {
String baseUrl() {
return "login.testing.jimber.org";
return "login.testing.threefold.me";
}

String openKycApiUrl() {
return "https://openkyc.testing.jimber.org";
return "https://openkyc.testing.threefold.me";
}

String threeBotApiUrl() {
return "https://login.testing.jimber.org/api";
return "https://login.testing.threefold.me/api";
}

String threeBotFrontEndUrl() {
return "https://login.testing.jimber.org/";
return "https://login.testing.threefold.me/";
}

String threeBotSocketUrl() {
return "wss://login.testing.jimber.org";
return "wss://login.testing.threefold.me";
}

String wizardUrl() {
return 'https://wizard.staging.jimber.org/';
return 'https://wizard.staging.threefold.me/';
}

String pKidUrl() {
return 'https://pkid.staging.jimber.io/v1';
return 'https://pkid.staging.threefold.me/v1';
}

Map<String, String> flagSmithConfig() {
return {
'url': 'https://flagsmith.jimber.io/api/v1/',
'url': 'https://flagsmith.threefold.me/api/v1/',
'apiKey': 'VtTsMwJwiF69QWFWHGEMKM'
};
}
Expand Down
4 changes: 2 additions & 2 deletions app/lib/app_config_local.template
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class AppConfigLocal extends AppConfigImpl {
}

String wizardUrl() {
return 'https://wizard.jimber.org/';
return 'https://wizard.threefold.me/';
}

String pKidUrl() {
Expand All @@ -32,7 +32,7 @@ class AppConfigLocal extends AppConfigImpl {

Map<String, String> flagSmithConfig() {
return {
'url': 'https://flagsmith.jimber.io/api/v1/',
'url': 'https://flagsmith.threefold.me/api/v1/',
'apiKey': 'm3L3gTcQYcFwCzSGxFJJWd'
};
}
Expand Down

0 comments on commit 54f49b9

Please sign in to comment.