Skip to content

Commit

Permalink
Add support for soft-deleting a user
Browse files Browse the repository at this point in the history
  • Loading branch information
evanlihou committed Sep 7, 2023
1 parent 745db5b commit 50b265e
Show file tree
Hide file tree
Showing 11 changed files with 684 additions and 41 deletions.
1 change: 1 addition & 0 deletions FoodPicker.Infrastructure/Models/ApplicationUser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ public class ApplicationUser : IdentityUser
[Required]
public string Name { get; set; }
public bool VoteIsRequired { get; set; } = true;
public bool IsActive { get; set; } = true;
}
}
Loading

0 comments on commit 50b265e

Please sign in to comment.