Give fsAPI to keyserver in polylith/gobind

This commit is contained in:
Neil Alexander 2020-12-01 10:52:02 +00:00
parent 9c52f82736
commit c16abb089c
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944
2 changed files with 10 additions and 7 deletions

View file

@ -21,7 +21,8 @@ import (
)
func KeyServer(base *setup.BaseDendrite, cfg *config.Dendrite) {
intAPI := keyserver.NewInternalAPI(&base.Cfg.KeyServer, base.CreateFederationClient())
fsAPI := base.FederationSenderHTTPClient()
intAPI := keyserver.NewInternalAPI(&base.Cfg.KeyServer, fsAPI)
intAPI.SetUserAPI(base.UserAPIClient())
keyserver.AddInternalRoutes(base.InternalAPIMux, intAPI)