From 080a87df76724f56630f73e688b535ddd7aae13b Mon Sep 17 00:00:00 2001 From: Masterjun Date: Sun, 28 Jul 2024 15:36:11 +0200 Subject: [PATCH] disables user from autohistory, as it doesn't play nice with asp net identityuser (#1922) --- TASVideos.Data/Entity/User.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/TASVideos.Data/Entity/User.cs b/TASVideos.Data/Entity/User.cs index 512256028..d2d69a894 100644 --- a/TASVideos.Data/Entity/User.cs +++ b/TASVideos.Data/Entity/User.cs @@ -7,6 +7,7 @@ public enum UserPreference Auto = 0, Always, Never } +[ExcludeFromHistory] public class User : IdentityUser, ITrackable { [StringLength(50)]