Remove unused call link config
This commit is contained in:
		
							parent
							
								
									c8f97ed065
								
							
						
					
					
						commit
						7395b5760a
					
				|  | @ -398,6 +398,3 @@ registrationService: | |||
|     ABCDEFGHIJKLMNOPQRSTUVWXYZ/0123456789+abcdefghijklmnopqrstuvwxyz | ||||
|     AAAAAAAAAAAAAAAAAAAA | ||||
|     -----END CERTIFICATE----- | ||||
| 
 | ||||
| callLink: | ||||
|   userAuthenticationTokenSharedSecret: abcdefghijklmnopqrstuvwxyz0123456789ABCDEFG= # base64-encoded secret shared with calling frontend to generate auth tokens for Signal users | ||||
|  |  | |||
|  | @ -20,7 +20,6 @@ import org.whispersystems.textsecuregcm.configuration.ArtServiceConfiguration; | |||
| import org.whispersystems.textsecuregcm.configuration.AwsAttachmentsConfiguration; | ||||
| import org.whispersystems.textsecuregcm.configuration.BadgesConfiguration; | ||||
| import org.whispersystems.textsecuregcm.configuration.BraintreeConfiguration; | ||||
| import org.whispersystems.textsecuregcm.configuration.CallLinkConfiguration; | ||||
| import org.whispersystems.textsecuregcm.configuration.CdnConfiguration; | ||||
| import org.whispersystems.textsecuregcm.configuration.DatadogConfiguration; | ||||
| import org.whispersystems.textsecuregcm.configuration.DirectoryV2Configuration; | ||||
|  | @ -215,11 +214,6 @@ public class WhisperServerConfiguration extends Configuration { | |||
|   @JsonProperty | ||||
|   private ArtServiceConfiguration artService; | ||||
| 
 | ||||
|   @Valid | ||||
|   @NotNull | ||||
|   @JsonProperty | ||||
|   private CallLinkConfiguration callLink; | ||||
| 
 | ||||
|   @Valid | ||||
|   @NotNull | ||||
|   @JsonProperty | ||||
|  | @ -373,10 +367,6 @@ public class WhisperServerConfiguration extends Configuration { | |||
|     return datadog; | ||||
|   } | ||||
| 
 | ||||
|   public CallLinkConfiguration getCallLinkConfiguration() { | ||||
|     return callLink; | ||||
|   } | ||||
| 
 | ||||
|   public UnidentifiedDeliveryConfiguration getDeliveryCertificate() { | ||||
|     return unidentifiedDelivery; | ||||
|   } | ||||
|  |  | |||
|  | @ -1,9 +0,0 @@ | |||
| package org.whispersystems.textsecuregcm.configuration; | ||||
| 
 | ||||
| import com.fasterxml.jackson.annotation.JsonProperty; | ||||
| import org.whispersystems.textsecuregcm.util.ExactlySize; | ||||
| import javax.validation.constraints.NotEmpty; | ||||
| import java.util.HexFormat; | ||||
| 
 | ||||
| public record CallLinkConfiguration (@ExactlySize({32}) byte[] userAuthenticationTokenSharedSecret) { | ||||
| } | ||||
		Loading…
	
		Reference in New Issue
	
	 Katherine Yen
						Katherine Yen