mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-21 10:17:59 +01:00
Treat APNs team/key IDs as secrets so they can change atomically with the key itself
This commit is contained in:
committed by
Jon Chambers
parent
207ae6129b
commit
f2a3b8dba4
@@ -9,8 +9,8 @@ import javax.validation.constraints.NotNull;
|
||||
import org.whispersystems.textsecuregcm.configuration.secrets.SecretString;
|
||||
|
||||
|
||||
public record ApnConfiguration(@NotBlank String teamId,
|
||||
@NotBlank String keyId,
|
||||
public record ApnConfiguration(@NotNull SecretString teamId,
|
||||
@NotNull SecretString keyId,
|
||||
@NotNull SecretString signingKey,
|
||||
@NotBlank String bundleId,
|
||||
boolean sandbox) {
|
||||
|
||||
Reference in New Issue
Block a user