@xuda.io/account_module 1.2.53 → 1.2.55
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +12 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1450,10 +1450,22 @@ exports.get_prices = async function (uid, item) {
|
|
|
1450
1450
|
price = _conf.PRICE_OBJ.custom_domain_per_month;
|
|
1451
1451
|
break;
|
|
1452
1452
|
|
|
1453
|
+
case user_monitor:
|
|
1454
|
+
price = _conf.PRICE_OBJ.user_monitor_per_month;
|
|
1455
|
+
break;
|
|
1456
|
+
|
|
1457
|
+
case branding:
|
|
1458
|
+
price = _conf.PRICE_OBJ.branding_per_month;
|
|
1459
|
+
break;
|
|
1460
|
+
|
|
1453
1461
|
default:
|
|
1454
1462
|
price = 0;
|
|
1455
1463
|
break;
|
|
1456
1464
|
}
|
|
1465
|
+
|
|
1466
|
+
if (_conf.PRICE_OBJ.server_slugs[item]) {
|
|
1467
|
+
price = _conf.PRICE_OBJ.server_slugs[item].price;
|
|
1468
|
+
}
|
|
1457
1469
|
};
|
|
1458
1470
|
// setTimeout(async () => {
|
|
1459
1471
|
// const uid = "0489f946c213947316647b468f029ed9"; //"aecc740881fd0a35098c738652000fab";
|