Skip to content

Commit 67a7149

Browse files
committed
Merge branch 'release'
2 parents 57c41df + e7b0924 commit 67a7149

22 files changed

Lines changed: 115 additions & 115 deletions

ionic.config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "CryptoWallet",
3-
"app_id": "6885ab3c",
3+
"app_id": "1bbfbbf6",
44
"type": "ionic-angular",
55
"proxies": [],
66
"integrations": {

src/providers/administrator/alert.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ import { CryptoWalletResponse } from '../../responses/cryptowalletresponse';
99
@Injectable()
1010
export class AdministratorAlertProvider {
1111

12-
private readonly allAlertsPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/alert";
13-
private readonly getAlertPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/alert/ID";
14-
private readonly insertAlertPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/alert";
15-
private readonly updateAlertPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/alert/ID";
16-
private readonly deleteAlertPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/alert/ID";
12+
private readonly allAlertsPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/alert";
13+
private readonly getAlertPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/alert/ID";
14+
private readonly insertAlertPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/alert";
15+
private readonly updateAlertPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/alert/ID";
16+
private readonly deleteAlertPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/alert/ID";
1717

1818
constructor(private http: HttpClient) {}
1919

src/providers/administrator/alerttype.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ import { CryptoWalletResponse } from '../../responses/cryptowalletresponse';
99
@Injectable()
1010
export class AdministratorAlertTypeProvider {
1111

12-
private readonly allAlertTypesPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/alert-type";
13-
private readonly getAlertTypePath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/alert-type/ID";
14-
private readonly insertAlertTypePath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/alert-type";
15-
private readonly updateAlertTypePath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/alert-type/ID";
16-
private readonly deleteAlertTypePath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/alert-type/ID";
12+
private readonly allAlertTypesPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/alert-type";
13+
private readonly getAlertTypePath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/alert-type/ID";
14+
private readonly insertAlertTypePath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/alert-type";
15+
private readonly updateAlertTypePath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/alert-type/ID";
16+
private readonly deleteAlertTypePath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/alert-type/ID";
1717

1818
constructor(private http: HttpClient) {}
1919

src/providers/administrator/asset.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ import { CryptoWalletResponse } from '../../responses/cryptowalletresponse';
1111
@Injectable()
1212
export class AdministratorAssetProvider {
1313

14-
private readonly allAssetsPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/asset";
15-
private readonly getAssetPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/asset/wallet/WALLET_ID/cryptocurrency/CRYPTOCURRENCY_ID";
16-
private readonly getAssetsByWalletPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/asset/wallet/ID";
17-
private readonly getAssetsByCryptocurrencyPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/asset/cryptocurrency/ID";
18-
private readonly insertAssetPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/asset/wallet/WALLET_ID/cryptocurrency/CRYPTOCURRENCY_ID";
19-
private readonly updateAssetPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/asset/wallet/WALLET_ID/cryptocurrency/CRYPTOCURRENCY_ID";
20-
private readonly deleteAssetPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/asset/wallet/WALLET_ID/cryptocurrency/CRYPTOCURRENCY_ID";
14+
private readonly allAssetsPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/asset";
15+
private readonly getAssetPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/asset/wallet/WALLET_ID/cryptocurrency/CRYPTOCURRENCY_ID";
16+
private readonly getAssetsByWalletPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/asset/wallet/ID";
17+
private readonly getAssetsByCryptocurrencyPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/asset/cryptocurrency/ID";
18+
private readonly insertAssetPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/asset/wallet/WALLET_ID/cryptocurrency/CRYPTOCURRENCY_ID";
19+
private readonly updateAssetPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/asset/wallet/WALLET_ID/cryptocurrency/CRYPTOCURRENCY_ID";
20+
private readonly deleteAssetPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/asset/wallet/WALLET_ID/cryptocurrency/CRYPTOCURRENCY_ID";
2121

2222
constructor(private http: HttpClient) {}
2323

src/providers/administrator/chartperiod.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ import { CryptoWalletResponse } from '../../responses/cryptowalletresponse';
99
@Injectable()
1010
export class AdministratorChartPeriodProvider {
1111

12-
private readonly allChartPeriodsPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/chart-period";
13-
private readonly getChartPeriodPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/chart-period/ID";
14-
private readonly insertChartPeriodPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/chart-period";
15-
private readonly updateChartPeriodPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/chart-period/ID";
16-
private readonly deleteChartPeriodPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/chart-period/ID";
12+
private readonly allChartPeriodsPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/chart-period";
13+
private readonly getChartPeriodPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/chart-period/ID";
14+
private readonly insertChartPeriodPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/chart-period";
15+
private readonly updateChartPeriodPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/chart-period/ID";
16+
private readonly deleteChartPeriodPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/chart-period/ID";
1717

1818
constructor(private http: HttpClient) {}
1919

src/providers/administrator/cryptocurrency.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ import { CryptoWalletResponse } from '../../responses/cryptowalletresponse';
99
@Injectable()
1010
export class AdministratorCryptocurrencyProvider {
1111

12-
private readonly allCryptocurrenciesPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/cryptocurrency";
13-
private readonly getCryptocurrencyPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/cryptocurrency/ID";
14-
private readonly insertCryptocurrencyPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/cryptocurrency";
15-
private readonly updateCryptocurrencyPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/cryptocurrency/ID";
16-
private readonly deleteCryptocurrencyPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/cryptocurrency/ID";
12+
private readonly allCryptocurrenciesPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/cryptocurrency";
13+
private readonly getCryptocurrencyPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/cryptocurrency/ID";
14+
private readonly insertCryptocurrencyPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/cryptocurrency";
15+
private readonly updateCryptocurrencyPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/cryptocurrency/ID";
16+
private readonly deleteCryptocurrencyPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/cryptocurrency/ID";
1717

1818
constructor(private http: HttpClient) {}
1919

src/providers/administrator/currency.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ import { CryptoWalletResponse } from '../../responses/cryptowalletresponse';
99
@Injectable()
1010
export class AdministratorCurrencyProvider {
1111

12-
private readonly allCurrenciesPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/currency";
13-
private readonly getCurrencyPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/currency/ID";
14-
private readonly insertCurrencyPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/currency";
15-
private readonly updateCurrencyPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/currency/ID";
16-
private readonly deleteCurrencyPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/currency/ID";
12+
private readonly allCurrenciesPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/currency";
13+
private readonly getCurrencyPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/currency/ID";
14+
private readonly insertCurrencyPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/currency";
15+
private readonly updateCurrencyPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/currency/ID";
16+
private readonly deleteCurrencyPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/currency/ID";
1717

1818
constructor(private http: HttpClient) {}
1919

src/providers/administrator/device.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ import { CryptoWalletResponse } from '../../responses/cryptowalletresponse';
99
@Injectable()
1010
export class AdministratorDeviceProvider {
1111

12-
private readonly allDevicesPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/device";
13-
private readonly getDevicePath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/device/ID";
14-
private readonly insertDevicePath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/device";
15-
private readonly updateDevicePath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/device/ID";
16-
private readonly deleteDevicePath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/device/ID";
12+
private readonly allDevicesPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/device";
13+
private readonly getDevicePath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/device/ID";
14+
private readonly insertDevicePath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/device";
15+
private readonly updateDevicePath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/device/ID";
16+
private readonly deleteDevicePath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/device/ID";
1717

1818
constructor(private http: HttpClient) {}
1919

src/providers/administrator/favorite.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ import { CryptoWalletResponse } from '../../responses/cryptowalletresponse';
1111
@Injectable()
1212
export class AdministratorFavoriteProvider {
1313

14-
private readonly allFavoritesPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/favorite";
15-
private readonly getFavoritePath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/favorite/user/USER_ID/cryptocurrency/CRYPTOCURRENCY_ID";
16-
private readonly getFavoritesByUserPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/favorite/user/ID";
17-
private readonly getFavoritesByCryptocurrencyPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/favorite/cryptocurrency/ID";
18-
private readonly insertFavoritePath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/favorite/user/USER_ID/cryptocurrency/CRYPTOCURRENCY_ID";
19-
private readonly updateFavoritePath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/favorite/user/USER_ID/cryptocurrency/CRYPTOCURRENCY_ID";
20-
private readonly deleteFavoritePath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/favorite/user/USER_ID/cryptocurrency/CRYPTOCURRENCY_ID";
14+
private readonly allFavoritesPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/favorite";
15+
private readonly getFavoritePath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/favorite/user/USER_ID/cryptocurrency/CRYPTOCURRENCY_ID";
16+
private readonly getFavoritesByUserPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/favorite/user/ID";
17+
private readonly getFavoritesByCryptocurrencyPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/favorite/cryptocurrency/ID";
18+
private readonly insertFavoritePath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/favorite/user/USER_ID/cryptocurrency/CRYPTOCURRENCY_ID";
19+
private readonly updateFavoritePath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/favorite/user/USER_ID/cryptocurrency/CRYPTOCURRENCY_ID";
20+
private readonly deleteFavoritePath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/favorite/user/USER_ID/cryptocurrency/CRYPTOCURRENCY_ID";
2121

2222
constructor(private http: HttpClient) {}
2323

src/providers/administrator/log.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import { CryptoWalletResponse } from '../../responses/cryptowalletresponse';
88
@Injectable()
99
export class AdministratorLogProvider {
1010

11-
private readonly allLogsPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/log";
12-
private readonly getLogPath: string = "http://51.15.205.40/api/cryptowallet/administrator/TOKEN/log/ID";
11+
private readonly allLogsPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/log";
12+
private readonly getLogPath: string = "https://cryptowallet.loic-delorme.fr/api/cryptowallet/administrator/TOKEN/log/ID";
1313

1414
constructor(private http: HttpClient) {}
1515

0 commit comments

Comments
 (0)