Setup: utente admin via web, ruoli e run-context con security-group, onboarding install/uninstall script
Nightly Build / build (push) Failing after 6m12s

This commit is contained in:
2026-07-20 12:54:56 +01:00
parent b6128e4053
commit 44dc67cda0
29 changed files with 1631 additions and 110 deletions
+8
View File
@@ -238,6 +238,13 @@ pub enum ServerEvent {
ClientSelected {
client: String,
},
/// The session security-group (permission group) changed. Broadcast to every
/// client of the source so the chat picker stays in sync — the twin of
/// `ClientSelected` for the model. `group` is the effective group id
/// (`"default"` when cleared). The backend is the single source of truth.
SecurityGroupSelected {
group: String,
},
}
impl ServerEvent {
@@ -275,6 +282,7 @@ impl ServerEvent {
Self::UserMessage { .. } => "user_message",
Self::TurnRunning { .. } => "turn_running",
Self::ClientSelected { .. } => "client_selected",
Self::SecurityGroupSelected { .. } => "security_group_selected",
}
}
}