fix(doc): fix doc

This commit is contained in:
2026-01-31 13:37:15 +08:00
parent d071e1a27d
commit 6b68a368f1
10 changed files with 158 additions and 17 deletions

View File

@@ -74,6 +74,11 @@ async fn tenant_enabled_apps_roundtrip_and_version_conflict()
.await;
assert!(r2.is_err());
let r3 = tenant_service
.set_enabled_apps(tenant_id, vec!["dms".to_string()], None, actor_user_id)
.await;
assert!(r3.is_err());
cleanup(&pool, tenant_id, &test_app).await;
Ok(())
}