mirror of
https://github.com/hoernschen/dendrite.git
synced 2025-08-02 22:22:46 +00:00
HTTP API endpoints
This commit is contained in:
parent
90dd5e6544
commit
5ef94156f5
3 changed files with 38 additions and 0 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue