backend-manager 3.2.35 → 3.2.36
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/package.json
CHANGED
|
@@ -122,6 +122,12 @@ Module.prototype.main = function () {
|
|
|
122
122
|
return resolve(self);
|
|
123
123
|
}
|
|
124
124
|
|
|
125
|
+
// Increment signups
|
|
126
|
+
usage.increment('signups');
|
|
127
|
+
|
|
128
|
+
// Update signups
|
|
129
|
+
await usage.update();
|
|
130
|
+
|
|
125
131
|
// Increment user count
|
|
126
132
|
await self.incrementUserCount().catch(e => e);
|
|
127
133
|
|