QueryRoomsForUser retrieves a list of room IDs matching the given query.
(ctx context.Context, req *QueryRoomsForUserRequest, res *QueryRoomsForUserResponse)
| 320 | |
| 321 | // QueryRoomsForUser retrieves a list of room IDs matching the given query. |
| 322 | func (t *RoomserverInternalAPITrace) QueryRoomsForUser(ctx context.Context, req *QueryRoomsForUserRequest, res *QueryRoomsForUserResponse) error { |
| 323 | err := t.Impl.QueryRoomsForUser(ctx, req, res) |
| 324 | util.GetLogger(ctx).WithError(err).Infof("QueryRoomsForUser req=%+v res=%+v", js(req), js(res)) |
| 325 | return err |
| 326 | } |
| 327 | |
| 328 | // QueryBulkStateContent does a bulk query for state event content in the given rooms. |
| 329 | func (t *RoomserverInternalAPITrace) QueryBulkStateContent(ctx context.Context, req *QueryBulkStateContentRequest, res *QueryBulkStateContentResponse) error { |
nothing calls this directly
no test coverage detected