@ian2018cs/agenthub 0.1.53 → 0.1.54
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 +1 -1
- package/server/projects.js +2 -1
package/package.json
CHANGED
package/server/projects.js
CHANGED
|
@@ -272,7 +272,8 @@ async function getProjects(userUuid) {
|
|
|
272
272
|
displayName: customName || autoDisplayName,
|
|
273
273
|
fullPath: fullPath,
|
|
274
274
|
isCustomName: !!customName,
|
|
275
|
-
sessions: []
|
|
275
|
+
sessions: [],
|
|
276
|
+
...(config[entry.name]?.agentInfo ? { agentInfo: config[entry.name].agentInfo } : {})
|
|
276
277
|
};
|
|
277
278
|
|
|
278
279
|
// Try to get sessions for this project (just first 5 for performance)
|