Add @E164 to ChangeNumberRequest

This commit is contained in:
Chris Eager
2024-11-22 15:00:59 -06:00
committed by Chris Eager
parent 1c3cf39b8a
commit cba56f3263
2 changed files with 20 additions and 0 deletions

View File

@@ -20,6 +20,7 @@ import jakarta.validation.constraints.NotBlank;
import jakarta.validation.constraints.NotNull;
import org.signal.libsignal.protocol.IdentityKey;
import org.whispersystems.textsecuregcm.util.ByteArrayAdapter;
import org.whispersystems.textsecuregcm.util.E164;
import org.whispersystems.textsecuregcm.util.IdentityKeyAdapter;
import org.whispersystems.textsecuregcm.util.RegistrationIdValidator;
@@ -34,6 +35,7 @@ public record ChangeNumberRequest(
Must not be combined with `sessionId`.""")
@JsonDeserialize(using = ByteArrayAdapter.Deserializing.class) byte[] recoveryPassword,
@E164
@Schema(description="the new phone number for this account")
@NotBlank String number,