Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-09 20:02:54 +01:00
try alternative subscription update
Dieser Commit ist enthalten in:
Ursprung
2b867ce678
Commit
06e5b4baae
2 geänderte Dateien mit 19 neuen und 19 gelöschten Zeilen
|
@ -39,23 +39,24 @@ export default class WizardSubscriptionBadge extends Component {
|
||||||
|
|
||||||
@action
|
@action
|
||||||
update() {
|
update() {
|
||||||
this.updating = true;
|
this.subscription.retrieveSubscriptionStatus();
|
||||||
return ajax(`${this.basePath}/subscriptions`, {
|
// this.updating = true;
|
||||||
type: "POST",
|
// return ajax(`${this.basePath}/subscriptions`, {
|
||||||
})
|
// type: "POST",
|
||||||
.then(() => {
|
// })
|
||||||
if (this.subscription.subscribed) {
|
// .then(() => {
|
||||||
this.updateIcon = "check";
|
// if (this.subscription.subscribed) {
|
||||||
} else {
|
// this.updateIcon = "check";
|
||||||
this.updateIcon = "times";
|
// } else {
|
||||||
}
|
// this.updateIcon = "times";
|
||||||
})
|
// }
|
||||||
.catch(popupAjaxError)
|
// })
|
||||||
.finally(() => {
|
// .catch(popupAjaxError)
|
||||||
this.updating = false;
|
// .finally(() => {
|
||||||
// setTimeout(() => {
|
// this.updating = false;
|
||||||
// this.updateIcon = null;
|
// setTimeout(() => {
|
||||||
// }, 7000);
|
// this.updateIcon = null;
|
||||||
});
|
// }, 7000);
|
||||||
|
// });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -47,7 +47,6 @@ export default class WizardSubscriptionStatus extends Component {
|
||||||
.finally(() => {
|
.finally(() => {
|
||||||
this.unauthorizing = false;
|
this.unauthorizing = false;
|
||||||
this.subscription.retrieveSubscriptionStatus();
|
this.subscription.retrieveSubscriptionStatus();
|
||||||
//window.location.reload();
|
|
||||||
})
|
})
|
||||||
.catch(popupAjaxError);
|
.catch(popupAjaxError);
|
||||||
}
|
}
|
||||||
|
|
Laden …
In neuem Issue referenzieren