feat(i18n): persist Bokmal preference globally

This commit is contained in:
cesnimda
2026-08-28 12:44:02 +02:00
parent b6dcc7c760
commit 5805c1a621
21 changed files with 359 additions and 66 deletions
+4
View File
@@ -92,6 +92,10 @@ namespace JobTrackerApi.Data
.Property(x => x.EmailFollowUpRemindersEnabled)
.HasDefaultValue(true);
modelBuilder.Entity<ApplicationUser>()
.Property(x => x.UiLanguage)
.HasMaxLength(16);
modelBuilder.Entity<AccountDeletionRequest>().Property(x => x.OwnerUserId).HasMaxLength(255);
modelBuilder.Entity<AccountDeletionRequest>().Property(x => x.OwnerKey).HasMaxLength(64);
modelBuilder.Entity<AccountDeletionRequest>().Property(x => x.RequestedByUserId).HasMaxLength(255);