mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-06 12:05:43 +00:00
fix: use post instead of put (#1604)
This commit is contained in:
parent
7131131333
commit
a3abdecb33
@ -14,7 +14,7 @@
|
|||||||
<mat-spinner class="spinner" diameter="20" *ngIf="customerLoading || stripeLoading"></mat-spinner>
|
<mat-spinner class="spinner" diameter="20" *ngIf="customerLoading || stripeLoading"></mat-spinner>
|
||||||
<div class="detail" *ngIf="stripeCustomer">
|
<div class="detail" *ngIf="stripeCustomer">
|
||||||
<p class="title">{{'FEATURES.TIER.DETAILS' | translate}}
|
<p class="title">{{'FEATURES.TIER.DETAILS' | translate}}
|
||||||
<a (click)="updateCustomer()">{{'ACTIONS.EDIT' | translate}}</a>
|
<a (click)="setCustomer()">{{'ACTIONS.EDIT' | translate}}</a>
|
||||||
</p>
|
</p>
|
||||||
<p>{{stripeCustomer?.contact}}</p>
|
<p>{{stripeCustomer?.contact}}</p>
|
||||||
<p *ngIf="stripeCustomer.company">{{stripeCustomer?.company}}</p>
|
<p *ngIf="stripeCustomer.company">{{stripeCustomer?.company}}</p>
|
||||||
|
@ -90,7 +90,7 @@ export class FeaturesComponent implements OnDestroy {
|
|||||||
this.sub.unsubscribe();
|
this.sub.unsubscribe();
|
||||||
}
|
}
|
||||||
|
|
||||||
public updateCustomer(): void {
|
public setCustomer(): void {
|
||||||
const dialogRefPhone = this.dialog.open(PaymentInfoDialogComponent, {
|
const dialogRefPhone = this.dialog.open(PaymentInfoDialogComponent, {
|
||||||
data: {
|
data: {
|
||||||
customer: this.stripeCustomer,
|
customer: this.stripeCustomer,
|
||||||
@ -102,7 +102,7 @@ export class FeaturesComponent implements OnDestroy {
|
|||||||
if (customer) {
|
if (customer) {
|
||||||
console.log(customer);
|
console.log(customer);
|
||||||
this.stripeCustomer = customer;
|
this.stripeCustomer = customer;
|
||||||
this.subService.updateCustomer(this.org.id, customer).then(() => {
|
this.subService.setCustomer(this.org.id, customer).then(() => {
|
||||||
this.getLinkToStripe();
|
this.getLinkToStripe();
|
||||||
}).catch(console.error);
|
}).catch(console.error);
|
||||||
}
|
}
|
||||||
|
@ -30,7 +30,6 @@ export class SubscriptionService {
|
|||||||
const accessToken = this.storageService.getItem(accessTokenStorageKey);
|
const accessToken = this.storageService.getItem(accessTokenStorageKey);
|
||||||
return this.http.get(`${serviceUrl}/redirect`, {
|
return this.http.get(`${serviceUrl}/redirect`, {
|
||||||
headers: {
|
headers: {
|
||||||
// 'Content-Type': 'application/json; charset=utf-8',
|
|
||||||
[authorizationKey]: `${bearerPrefix} ${accessToken}`,
|
[authorizationKey]: `${bearerPrefix} ${accessToken}`,
|
||||||
},
|
},
|
||||||
params: {
|
params: {
|
||||||
@ -53,7 +52,6 @@ export class SubscriptionService {
|
|||||||
const accessToken = this.storageService.getItem(accessTokenStorageKey);
|
const accessToken = this.storageService.getItem(accessTokenStorageKey);
|
||||||
return this.http.get(`${serviceUrl}/customer`, {
|
return this.http.get(`${serviceUrl}/customer`, {
|
||||||
headers: {
|
headers: {
|
||||||
// 'Content-Type': 'application/json; charset=utf-8',
|
|
||||||
[authorizationKey]: `${bearerPrefix} ${accessToken}`,
|
[authorizationKey]: `${bearerPrefix} ${accessToken}`,
|
||||||
},
|
},
|
||||||
params: {
|
params: {
|
||||||
@ -66,15 +64,14 @@ export class SubscriptionService {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public updateCustomer(orgId: string, body: StripeCustomer): Promise<any> {
|
public setCustomer(orgId: string, body: StripeCustomer): Promise<any> {
|
||||||
return this.http.get('./assets/environment.json')
|
return this.http.get('./assets/environment.json')
|
||||||
.toPromise().then((data: any) => {
|
.toPromise().then((data: any) => {
|
||||||
if (data && data.subscriptionServiceUrl) {
|
if (data && data.subscriptionServiceUrl) {
|
||||||
const serviceUrl = data.subscriptionServiceUrl;
|
const serviceUrl = data.subscriptionServiceUrl;
|
||||||
const accessToken = this.storageService.getItem(accessTokenStorageKey);
|
const accessToken = this.storageService.getItem(accessTokenStorageKey);
|
||||||
return this.http.put(`${serviceUrl}/customer`, body, {
|
return this.http.post(`${serviceUrl}/customer`, body, {
|
||||||
headers: {
|
headers: {
|
||||||
// 'Content-Type': 'application/json; charset=utf-8',
|
|
||||||
[authorizationKey]: `${bearerPrefix} ${accessToken}`,
|
[authorizationKey]: `${bearerPrefix} ${accessToken}`,
|
||||||
},
|
},
|
||||||
params: {
|
params: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user