feat(attestation): request device attestation from desktop app

Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
Jiaming Zhang
2026-05-06 16:48:52 -07:00
parent 163eac9306
commit c4a198323f
45 changed files with 813 additions and 23 deletions

View File

@@ -1604,6 +1604,15 @@ async fn handle_server_request(
)
.await
}
ServerRequest::AttestationGenerate { request_id, .. } => {
reject_server_request(
client,
request_id,
&method,
"attestation generation is not supported in exec mode".to_string(),
)
.await
}
ServerRequest::ApplyPatchApproval { request_id, params } => {
reject_server_request(
client,