diff options
author | Kegsay <kegan@matrix.org> | 2020-08-04 11:32:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-04 11:32:14 +0100 |
commit | 0c4e8f6d4f0f39d2bd72807675295e4fad70479c (patch) | |
tree | 9560b73d1aa1a62d0bff700523b1ea9586cdb7cf /build | |
parent | fb56bbf0b7d4b21da3f55b066e71d24bf4599887 (diff) |
Send device list updates to servers (outbound only) (#1237)
* Add QueryDeviceMessages to serve up device keys and stream IDs
* Consume key change events in fedsender
Don't yet send them to destinations as we haven't worked them out yet
* Send device list updates to all required servers
* Glue it all together
Diffstat (limited to 'build')
-rw-r--r-- | build/gobind/monolith.go | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/build/gobind/monolith.go b/build/gobind/monolith.go index e2ff79c3..84103f38 100644 --- a/build/gobind/monolith.go +++ b/build/gobind/monolith.go @@ -131,17 +131,15 @@ func (m *DendriteMonolith) Start() { ) asAPI := appservice.NewInternalAPI(base, userAPI, rsAPI) - + stateAPI := currentstateserver.NewInternalAPI(base.Cfg, base.KafkaConsumer) fsAPI := federationsender.NewInternalAPI( - base, federation, rsAPI, keyRing, + base, federation, rsAPI, stateAPI, keyRing, ) // The underlying roomserver implementation needs to be able to call the fedsender. // This is different to rsAPI which can be the http client which doesn't need this dependency rsAPI.SetFederationSenderAPI(fsAPI) - stateAPI := currentstateserver.NewInternalAPI(base.Cfg, base.KafkaConsumer) - monolith := setup.Monolith{ Config: base.Cfg, AccountDB: accountDB, |