diff options
author | Kegsay <kegan@matrix.org> | 2020-09-04 11:46:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-04 11:46:01 +0100 |
commit | 67cc8619d3c655beb91387cd82ecccd50b0d8f48 (patch) | |
tree | bea88aaf7f8db9e0d03e7d139e175e0a59ba3d04 /syncapi | |
parent | c63abc8660df16a1fd458d6e0389801ebb553abc (diff) |
Remove QueryKnownUsers from current state server (#1393)
* Remove QueryKnownUsers from current state server
* Fix HTTP mode
Diffstat (limited to 'syncapi')
-rw-r--r-- | syncapi/internal/keychange_test.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/syncapi/internal/keychange_test.go b/syncapi/internal/keychange_test.go index 6765fa65..92573baa 100644 --- a/syncapi/internal/keychange_test.go +++ b/syncapi/internal/keychange_test.go @@ -57,10 +57,6 @@ func (s *mockCurrentStateAPI) QueryCurrentState(ctx context.Context, req *api.Qu return nil } -func (s *mockCurrentStateAPI) QueryKnownUsers(ctx context.Context, req *api.QueryKnownUsersRequest, res *api.QueryKnownUsersResponse) error { - return nil -} - // QueryRoomsForUser retrieves a list of room IDs matching the given query. func (s *mockCurrentStateAPI) QueryRoomsForUser(ctx context.Context, req *api.QueryRoomsForUserRequest, res *api.QueryRoomsForUserResponse) error { return nil |