mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-22 19:18:05 +01:00
implement /v2/config API (#2764)
This commit is contained in:
committed by
GitHub
parent
6116830da9
commit
5c21aa2ad4
@@ -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) {
|
||||
}
|
||||
Reference in New Issue
Block a user