dashboard: GET /api/matrix-accounts — list an agent's provisioned matrix accounts (#1698)

This commit is contained in:
damocles 2026-06-16 09:48:23 +02:00 committed by mara
commit 1ebc384e66
2 changed files with 133 additions and 0 deletions

View file

@ -33,6 +33,7 @@ mod approvals;
mod build_logs;
mod journal;
mod lifecycle_ops;
mod matrix_accounts;
pub(crate) mod permissions;
mod questions;
mod reminders;
@ -100,6 +101,10 @@ pub async fn serve(port: u16, coord: Arc<Coordinator>) -> Result<()> {
.route("/api/journal-host", get(journal::get_journal_host))
.route("/api/approval-diff/{id}", get(approvals::get_approval_diff))
.route("/api/state-file", get(state_files::get_state_file))
.route(
"/api/matrix-accounts",
get(matrix_accounts::get_matrix_accounts),
)
.route("/api/reminders", get(reminders::api_reminders))
.route("/api/operator-inbox", get(api_operator_inbox))
.route("/api/stats-hive", get(api_stats_hive))