@yemi33/minions 0.1.89 → 0.1.90
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/CHANGELOG.md +5 -0
- package/dashboard/js/command-center.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -414,11 +414,11 @@ async function ccExecuteAction(action) {
|
|
|
414
414
|
case 'create-meeting': {
|
|
415
415
|
const res = await fetch('/api/meetings', {
|
|
416
416
|
method: 'POST', headers: { 'Content-Type': 'application/json' },
|
|
417
|
-
body: JSON.stringify({ title: action.title
|
|
417
|
+
body: JSON.stringify({ title: action.title, agenda: action.agenda, participants: action.agents, rounds: action.rounds, project: action.project })
|
|
418
418
|
});
|
|
419
419
|
if (!res.ok) { const d = await res.json().catch(() => ({})); throw new Error(d.error || 'Meeting create failed'); }
|
|
420
420
|
const d = await res.json();
|
|
421
|
-
status.innerHTML = '✓ Meeting started: <strong>' + escHtml(action.
|
|
421
|
+
status.innerHTML = '✓ Meeting started: <strong>' + escHtml(action.title) + '</strong>' + (d.id ? ' (' + escHtml(d.id) + ')' : '');
|
|
422
422
|
status.style.color = 'var(--green)';
|
|
423
423
|
wakeEngine();
|
|
424
424
|
break;
|
package/package.json
CHANGED