diff options
author | Kegsay <kegan@matrix.org> | 2020-08-05 13:41:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-05 13:41:16 +0100 |
commit | 642f9cb964b20f52133e11c52e40733f7bc07320 (patch) | |
tree | e48f667d681161a9694b45cb08feded569e539b4 /federationapi/routing/routing.go | |
parent | 15dc1f4d0361da736339653ca8e6ba26ed103792 (diff) |
Process inbound device list updates from federation (#1240)
* Add InputDeviceListUpdate
* Unbreak unit tests
* Process inbound device list updates from federation
- Persist the keys in the keyserver and produce key changes
- Does not currently fetch keys from the remote server if the prev IDs are missing
* Linting
Diffstat (limited to 'federationapi/routing/routing.go')
-rw-r--r-- | federationapi/routing/routing.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/federationapi/routing/routing.go b/federationapi/routing/routing.go index 9808d623..30a65271 100644 --- a/federationapi/routing/routing.go +++ b/federationapi/routing/routing.go @@ -82,7 +82,7 @@ func Setup( func(httpReq *http.Request, request *gomatrixserverlib.FederationRequest, vars map[string]string) util.JSONResponse { return Send( httpReq, request, gomatrixserverlib.TransactionID(vars["txnID"]), - cfg, rsAPI, eduAPI, keys, federation, + cfg, rsAPI, eduAPI, keyAPI, keys, federation, ) }, )).Methods(http.MethodPut, http.MethodOptions) |