diff options
author | Kegsay <kegan@matrix.org> | 2020-09-04 15:58:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-04 15:58:30 +0100 |
commit | 088294ee655282a32f7a418307408291f4299565 (patch) | |
tree | 2e3cabce42b85e4523d60096d0fa28f9cea5ae63 /syncapi/internal | |
parent | 5076925c184998414c3691e97fc21b554abf4a55 (diff) |
Remove QueryRoomsForUser from current state server (#1398)
Diffstat (limited to 'syncapi/internal')
-rw-r--r-- | syncapi/internal/keychange_test.go | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/syncapi/internal/keychange_test.go b/syncapi/internal/keychange_test.go index ee6ca1f4..7d739430 100644 --- a/syncapi/internal/keychange_test.go +++ b/syncapi/internal/keychange_test.go @@ -112,11 +112,6 @@ type mockStateAPI struct { rsAPI *mockRoomserverAPI } -// QueryRoomsForUser retrieves a list of room IDs matching the given query. -func (s *mockStateAPI) QueryRoomsForUser(ctx context.Context, req *stateapi.QueryRoomsForUserRequest, res *stateapi.QueryRoomsForUserResponse) error { - return nil -} - // QueryBulkStateContent does a bulk query for state event content in the given rooms. func (s *mockStateAPI) QueryBulkStateContent(ctx context.Context, req *stateapi.QueryBulkStateContentRequest, res *stateapi.QueryBulkStateContentResponse) error { var res2 api.QueryBulkStateContentResponse |