diff options
author | Kegsay <kegan@matrix.org> | 2020-06-16 17:05:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-16 17:05:38 +0100 |
commit | 83391da0e04dda7a52589ee7ec6df2b615571894 (patch) | |
tree | 0a0ffcc5b7209600eaf042ee317a0681e0bd7f59 /internal | |
parent | 1942928ee5e0398beed45c8b1c63d7b13e89b646 (diff) |
Make syncapi use userapi (#1136)
* Make syncapi use userapi
* Unbreak things
* Fix tests
* Lint
Diffstat (limited to 'internal')
-rw-r--r-- | internal/setup/monolith.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/setup/monolith.go b/internal/setup/monolith.go index aec14aa7..bb81f740 100644 --- a/internal/setup/monolith.go +++ b/internal/setup/monolith.go @@ -87,6 +87,6 @@ func (m *Monolith) AddAllPublicRoutes(publicMux *mux.Router) { m.ExtPublicRoomsProvider, ) syncapi.AddPublicRoutes( - publicMux, m.KafkaConsumer, m.UserAPI, m.AccountDB, m.RoomserverAPI, m.FedClient, m.Config, + publicMux, m.KafkaConsumer, m.UserAPI, m.RoomserverAPI, m.FedClient, m.Config, ) } |