Add a listener for the new component

This commit is contained in:
Brendan Abolivier 2017-08-16 11:16:17 +01:00
parent af95c8c879
commit bd7e43bcab
No known key found for this signature in database
GPG key ID: 8EF1500759F70623
2 changed files with 2 additions and 0 deletions

View file

@ -78,3 +78,4 @@ listen:
federation_api: "localhost:7772" federation_api: "localhost:7772"
sync_api: "localhost:7773" sync_api: "localhost:7773"
media_api: "localhost:7774" media_api: "localhost:7774"
public_rooms_api: "localhost:7775"

View file

@ -142,6 +142,7 @@ type Dendrite struct {
SyncAPI Address `yaml:"sync_api"` SyncAPI Address `yaml:"sync_api"`
RoomServer Address `yaml:"room_server"` RoomServer Address `yaml:"room_server"`
FederationSender Address `yaml:"federation_sender"` FederationSender Address `yaml:"federation_sender"`
PublicRoomsAPI Address `yaml:"public_rooms_api"`
} `yaml:"listen"` } `yaml:"listen"`
} }