HTTP API endpoints

This commit is contained in:
Neil Alexander 2021-07-15 15:13:42 +01:00
parent 90dd5e6544
commit 5ef94156f5
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944
3 changed files with 38 additions and 0 deletions

View file

@ -208,6 +208,16 @@ func (t *RoomserverInternalAPITrace) QueryStateAndAuthChain(
return err
}
func (t *RoomserverInternalAPITrace) QueryStateAndAuthChainIDs(
ctx context.Context,
req *QueryStateAndAuthChainIDsRequest,
res *QueryStateAndAuthChainIDsResponse,
) error {
err := t.Impl.QueryStateAndAuthChainIDs(ctx, req, res)
util.GetLogger(ctx).WithError(err).Infof("QueryStateAndAuthChainIDs req=%+v res=%+v", js(req), js(res))
return err
}
func (t *RoomserverInternalAPITrace) PerformBackfill(
ctx context.Context,
req *PerformBackfillRequest,