mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-21 13:53:09 -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
|
||||
}
|
||||
|
||||
func (t *mockCurrentStateAPI) QueryServerBannedFromRoom(ctx context.Context, req *api.QueryServerBannedFromRoomRequest, res *api.QueryServerBannedFromRoomResponse) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
type wantCatchup struct {
|
||||
hasNew bool
|
||||
changed []string
|
||||
|
|
|
|||
|
|
@ -445,3 +445,5 @@ Banned servers cannot /invite
|
|||
Banned servers cannot get room state
|
||||
Banned servers cannot /event_auth
|
||||
Banned servers cannot get missing events
|
||||
Banned servers cannot get room state ids
|
||||
Banned servers cannot backfill
|
||||
|
|
|
|||
Loading…
Reference in a new issue