mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-21 22:03:10 -06:00
Fix sync API test
This commit is contained in:
parent
c57dd004b8
commit
a1e71c50e6
|
|
@ -114,6 +114,10 @@ func (s *mockCurrentStateAPI) QuerySharedUsers(ctx context.Context, req *api.Que
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (t *mockCurrentStateAPI) QueryServerBannedFromRoom(ctx context.Context, req *api.QueryServerBannedFromRoomRequest, res *api.QueryServerBannedFromRoomResponse) error {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
type wantCatchup struct {
|
type wantCatchup struct {
|
||||||
hasNew bool
|
hasNew bool
|
||||||
changed []string
|
changed []string
|
||||||
|
|
|
||||||
|
|
@ -445,3 +445,5 @@ Banned servers cannot /invite
|
||||||
Banned servers cannot get room state
|
Banned servers cannot get room state
|
||||||
Banned servers cannot /event_auth
|
Banned servers cannot /event_auth
|
||||||
Banned servers cannot get missing events
|
Banned servers cannot get missing events
|
||||||
|
Banned servers cannot get room state ids
|
||||||
|
Banned servers cannot backfill
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue