From a1f85de885c316ef7b0997c2e8286c3578764785 Mon Sep 17 00:00:00 2001 From: Accusys Date: Mon, 18 May 2026 01:31:39 +0800 Subject: [PATCH] fix: identity detail response uuid -> identity_uuid --- src/api/identity_api.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/identity_api.rs b/src/api/identity_api.rs index 85b2bac..63f6815 100644 --- a/src/api/identity_api.rs +++ b/src/api/identity_api.rs @@ -230,7 +230,7 @@ async fn get_file_identities( #[derive(Debug, Serialize)] pub struct IdentityDetailResponse { pub success: bool, - pub uuid: String, + pub identity_uuid: String, pub name: String, pub identity_type: Option, pub source: Option, @@ -262,7 +262,7 @@ async fn get_identity_detail( match identity { Some(i) => Ok(Json(IdentityDetailResponse { success: true, - uuid: i.uuid, + identity_uuid: i.uuid, name: i.name, identity_type: i.identity_type, source: i.source,