First one #8

Merged
phoenix merged 42 commits from get_it_going into v0.2.0 2026-06-13 19:49:15 -04:00
Showing only changes of commit 264b266212 - Show all commits
+1 -4
View File
@@ -30,10 +30,7 @@ pub mod contact {
impl AddContactRequest {
pub fn is_valid(&self) -> bool {
self.phone_number.is_empty()
|| self.firstname.is_none()
|| self.lastname.is_none()
|| self.user_id.is_nil()
!self.phone_number.is_empty() || !self.user_id.is_nil()
}
}
}