Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-09 20:02:54 +01:00
make init process async
Dieser Commit ist enthalten in:
Ursprung
f6ce0f53ad
Commit
a82af2e016
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
|
@ -18,9 +18,9 @@ export default class SubscriptionService extends Service {
|
||||||
@tracked subscriptionAttributes = {};
|
@tracked subscriptionAttributes = {};
|
||||||
subscriptionLandingUrl = PRODUCT_PAGE;
|
subscriptionLandingUrl = PRODUCT_PAGE;
|
||||||
|
|
||||||
init() {
|
async init() {
|
||||||
super.init(...arguments);
|
super.init(...arguments);
|
||||||
this.retrieveSubscriptionStatus();
|
await this.retrieveSubscriptionStatus();
|
||||||
}
|
}
|
||||||
|
|
||||||
async retrieveSubscriptionStatus() {
|
async retrieveSubscriptionStatus() {
|
||||||
|
|
Laden …
In neuem Issue referenzieren