aboutsummaryrefslogtreecommitdiff
path: root/internal/config/config.go
diff options
context:
space:
mode:
authorNeil Alexander <neilalexander@users.noreply.github.com>2020-08-11 13:21:26 +0100
committerGitHub <noreply@github.com>2020-08-11 13:21:26 +0100
commit8b6ab272fb06e59d7747f3f52e1bdd462a52a463 (patch)
treed8d7d8b4e9e28701091e446f5357d809948af731 /internal/config/config.go
parentcce3678abef2bff0e37a2da10f726f550bffdc96 (diff)
New sample config (#1258)
* Config tweaks * Tweaks to config * Add new sample dendrite-config.yaml file * Review comments @Kegsay
Diffstat (limited to 'internal/config/config.go')
-rw-r--r--internal/config/config.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/internal/config/config.go b/internal/config/config.go
index cf9168f7..6cd04722 100644
--- a/internal/config/config.go
+++ b/internal/config/config.go
@@ -110,21 +110,6 @@ type Derived struct {
// servers from creating RoomIDs in exclusive application service namespaces
}
-// KeyPerspectives are used to configure perspective key servers for
-// retrieving server keys.
-type KeyPerspectives []struct {
- // The server name of the perspective key server
- ServerName gomatrixserverlib.ServerName `yaml:"server_name"`
- // Server keys for the perspective user, used to verify the
- // keys have been signed by the perspective server
- Keys []struct {
- // The key ID, e.g. ed25519:auto
- KeyID gomatrixserverlib.KeyID `yaml:"key_id"`
- // The public key in base64 unpadded format
- PublicKey string `yaml:"public_key"`
- } `yaml:"keys"`
-}
-
// A Path on the filesystem.
type Path string