Add PurgeRoom to in memory federation db

This commit is contained in:
Devon Hudson 2023-01-19 14:49:28 -07:00
parent 3c54ea1d56
commit f8e11207c1
No known key found for this signature in database
GPG key ID: CD06B18E77F6A628

View file

@ -482,3 +482,7 @@ func (d *InMemoryFederationDatabase) GetNotaryKeys(ctx context.Context, serverNa
func (d *InMemoryFederationDatabase) DeleteExpiredEDUs(ctx context.Context) error {
return nil
}
func (d *InMemoryFederationDatabase) PurgeRoom(ctx context.Context, roomID string) error {
return nil
}