From abd94d6154e02339faaf247f1c19d40b943bdc7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A5=D0=B0=D0=BB=D0=B8=D0=BC=D0=BE=D0=B2=20=D0=A0=D1=83?= =?UTF-8?q?=D1=81=D1=82=D0=B0=D0=BC?= Date: Thu, 19 Mar 2026 17:13:06 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9F=D1=80=D0=B0=D0=B2=D0=BA=D0=B8=20=D1=88?= =?UTF-8?q?=D0=B8=D1=84=D1=80=D0=BE=D0=B2=D0=B0=D0=BD=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Infrastructure/Persistence/Mongo/MongoDbMapConfigurator.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/server-net/src/Modules/Chats/Infrastructure/Persistence/Mongo/MongoDbMapConfigurator.cs b/apps/server-net/src/Modules/Chats/Infrastructure/Persistence/Mongo/MongoDbMapConfigurator.cs index 5d29df6..f63556b 100644 --- a/apps/server-net/src/Modules/Chats/Infrastructure/Persistence/Mongo/MongoDbMapConfigurator.cs +++ b/apps/server-net/src/Modules/Chats/Infrastructure/Persistence/Mongo/MongoDbMapConfigurator.cs @@ -31,6 +31,7 @@ public static class MongoDbMapConfigurator cm.MapField("_deletedFor").SetElementName("DeletedFor"); cm.MapField("_readBy").SetElementName("ReadBy"); cm.MapField("_reactions").SetElementName("Reactions"); + cm.MapProperty(c => c.Quote).SetSerializer(new EncryptedStringSerializer()); cm.SetIsRootClass(true); });