Abstract Redis away from room & friends

This commit is contained in:
jvyden 2022-05-15 15:51:23 -04:00
parent fb1a2e564d
commit 9ee2778595
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278
13 changed files with 297 additions and 110 deletions

View file

@ -40,7 +40,7 @@ public class RoomVisualizerController : ControllerBase
#if !DEBUG
return this.NotFound();
#else
RoomHelper.Rooms.DeleteAll();
RoomHelper.Rooms.RemoveAll();
return this.Redirect("/debug/roomVisualizer");
#endif
}