web-manager 3.1.25 → 3.1.26
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/account.js +1 -5
- package/package.json +1 -1
package/lib/account.js
CHANGED
@@ -398,13 +398,9 @@ Account.prototype._resolveAccount = function (firebaseUser, account, options) {
|
|
398
398
|
billingUpdateBtn.setAttribute('hidden', true);
|
399
399
|
|
400
400
|
if (planIsActive) {
|
401
|
-
updateURL.searchParams.set('appName', utilities.get(self.Manager, 'properties.global.brand.name', 'Unknown'));
|
402
|
-
updateURL.searchParams.set('supportUrl', currentURL.origin + '/support');
|
403
|
-
updateURL.searchParams.set('supportEmail', utilities.get(self.Manager, 'properties.contact.emailSupport', 'unknown@email.com'));
|
404
|
-
updateURL.searchParams.set('userEmail', firebaseUser.email);
|
405
|
-
updateURL.searchParams.set('userId', firebaseUser.uid);
|
406
401
|
updateURL.searchParams.set('orderId', account.plan.payment.orderId);
|
407
402
|
updateURL.searchParams.set('resourceId', account.plan.payment.resourceId);
|
403
|
+
|
408
404
|
billingUpdateBtn.removeAttribute('hidden').setAttribute('href', updateURL.toString());
|
409
405
|
} else {
|
410
406
|
billingSubscribeBtn.removeAttribute('hidden');
|
package/package.json
CHANGED