Fix bug where users can't be deleted (#648)

* Add username to mod cases if user is deleted

* Add timezone package to docker container

* Remove extra space in migration sql statement

* Changes from self-review
This commit is contained in:
Josh 2023-01-29 22:10:36 -06:00 committed by GitHub
parent 2c2f31ad38
commit 4559d26a54
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 170 additions and 83 deletions

View file

@ -27,6 +27,7 @@ public class ModerationCaseController : ControllerBase
@case.DismissedAt = DateTime.Now;
@case.DismisserId = user.UserId;
@case.DismisserUsername = user.Username;
@case.Processed = false;