Contact update #25

Merged
phoenix merged 5 commits from contact_update into main 2026-06-13 16:25:48 -04:00
Showing only changes of commit 50b8f368fb - Show all commits
+2 -2
View File
@@ -14,6 +14,6 @@ pub struct Contact {
#[serde(skip_serializing_if = "Option::is_none")]
pub nickname: Option<String>,
pub phone_number: String,
// empty
pub user_id: uuid::Uuid,
#[serde(skip_serializing_if = "crate::init::is_uuid_nil")]
pub user_id: Option<uuid::Uuid>,
}