implement /v2/config API (#2764)

This commit is contained in:
Jonathan Klabunde Tomer
2025-07-16 15:29:31 -07:00
committed by GitHub
parent 6116830da9
commit 5c21aa2ad4
6 changed files with 570 additions and 150 deletions

View File

@@ -0,0 +1,16 @@
/*
* Copyright 2025 Signal Messenger, LLC
* SPDX-License-Identifier: AGPL-3.0-only
*/
package org.whispersystems.textsecuregcm.entities;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.Map;
public record RemoteConfigurationResponse(
@JsonProperty
@Schema(description = "Remote configurations applicable to the user and client")
Map<String, String> config) {
}