web-manager 2.1.35 → 2.1.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/lib/account.js +3 -2
- package/package.json +1 -1
package/lib/account.js
CHANGED
|
@@ -277,8 +277,9 @@ Account.prototype._resolveAccount = function (currentUser, account, options) {
|
|
|
277
277
|
account.activity.created.timestampUNIX = account.activity.created.timestampUNIX || 0;
|
|
278
278
|
|
|
279
279
|
// Api
|
|
280
|
-
account.
|
|
281
|
-
account.
|
|
280
|
+
account.api = account.api || {};
|
|
281
|
+
account.api.clientId = account.api.clientId || 'unknown';
|
|
282
|
+
account.api.privateKey = account.api.privateKey || 'unknown';
|
|
282
283
|
|
|
283
284
|
// Set UI elements
|
|
284
285
|
try {
|
package/package.json
CHANGED