mirror of
https://github.com/dani-garcia/bw_web_builds.git
synced 2024-12-26 12:28:15 +03:00
Fix billing call and small Makefile change.
- Fixed a call to the billing history API. - Make sure to remove the old docker extracted files before generating new ones.
This commit is contained in:
parent
912192214e
commit
39e6d1dcae
2 changed files with 30 additions and 0 deletions
1
Makefile
1
Makefile
|
@ -45,6 +45,7 @@ docker-extract: docker
|
||||||
@docker rm bw_web_vault_extract || true
|
@docker rm bw_web_vault_extract || true
|
||||||
@docker create --name bw_web_vault_extract bw_web_vault
|
@docker create --name bw_web_vault_extract bw_web_vault
|
||||||
@mkdir -vp docker_builds
|
@mkdir -vp docker_builds
|
||||||
|
@rm -rf ./docker_builds/bw_web_vault.tar.gz ./docker_builds/web-vault
|
||||||
@docker cp bw_web_vault_extract:/bw_web_vault.tar.gz ./docker_builds/bw_web_vault.tar.gz
|
@docker cp bw_web_vault_extract:/bw_web_vault.tar.gz ./docker_builds/bw_web_vault.tar.gz
|
||||||
@docker cp bw_web_vault_extract:/web-vault ./docker_builds/web-vault
|
@docker cp bw_web_vault_extract:/web-vault ./docker_builds/web-vault
|
||||||
@docker rm bw_web_vault_extract || true
|
@docker rm bw_web_vault_extract || true
|
||||||
|
|
|
@ -191,6 +191,35 @@ index eacfea97..c2f81033 100644
|
||||||
this.environmentService.setUrls(urls);
|
this.environmentService.setUrls(urls);
|
||||||
|
|
||||||
setTimeout(() => this.notificationsService.init(), 3000);
|
setTimeout(() => this.notificationsService.init(), 3000);
|
||||||
|
diff --git a/src/app/settings/settings.component.ts b/src/app/settings/settings.component.ts
|
||||||
|
index 9756ba41..348c3843 100644
|
||||||
|
--- a/src/app/settings/settings.component.ts
|
||||||
|
+++ b/src/app/settings/settings.component.ts
|
||||||
|
@@ -55,10 +55,6 @@ export class SettingsComponent implements OnInit, OnDestroy {
|
||||||
|
this.hasFamilySponsorshipAvailable = await this.organizationService.canManageSponsorships();
|
||||||
|
const hasPremiumFromOrg = await this.stateService.getCanAccessPremium();
|
||||||
|
let billing = null;
|
||||||
|
- if (!this.selfHosted) {
|
||||||
|
- billing = await this.apiService.getUserBillingHistory();
|
||||||
|
- }
|
||||||
|
- this.hideSubscription =
|
||||||
|
- !this.premium && hasPremiumFromOrg && (this.selfHosted || billing?.hasNoHistory);
|
||||||
|
+ this.hideSubscription = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
diff --git a/src/app/settings/user-billing-history.component.ts b/src/app/settings/user-billing-history.component.ts
|
||||||
|
index ae26862d..69ff16a0 100644
|
||||||
|
--- a/src/app/settings/user-billing-history.component.ts
|
||||||
|
+++ b/src/app/settings/user-billing-history.component.ts
|
||||||
|
@@ -39,7 +39,7 @@ export class UserBillingHistoryComponent implements OnInit {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.loading = true;
|
||||||
|
- this.billing = await this.apiService.getUserBillingHistory();
|
||||||
|
+ this.billing = null;
|
||||||
|
this.loading = false;
|
||||||
|
}
|
||||||
|
|
||||||
diff --git a/src/app/vault/add-edit.component.html b/src/app/vault/add-edit.component.html
|
diff --git a/src/app/vault/add-edit.component.html b/src/app/vault/add-edit.component.html
|
||||||
index 37410ea5..8c9e1a6f 100644
|
index 37410ea5..8c9e1a6f 100644
|
||||||
--- a/src/app/vault/add-edit.component.html
|
--- a/src/app/vault/add-edit.component.html
|
||||||
|
|
Loading…
Reference in a new issue