From 0264ac9d529f0aaa1be7f5bebfc030a3407e1301 Mon Sep 17 00:00:00 2001 From: Mikhail Trubnikov Date: Wed, 4 Feb 2026 11:18:16 +1000 Subject: [PATCH] =?UTF-8?q?fix(api):=20=D0=B8=D1=81=D0=BF=D1=80=D0=B0?= =?UTF-8?q?=D0=B2=D0=BB=D0=B5=D0=BD=20=D0=BC=D0=B0=D0=BF=D0=BF=D0=B8=D0=BD?= =?UTF-8?q?=D0=B3=20=D0=B2=20JobGroupBaseResponse?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PARR.API/MappingProfiles/DomainToResponseProfile.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PARR.API/MappingProfiles/DomainToResponseProfile.cs b/PARR.API/MappingProfiles/DomainToResponseProfile.cs index 96111074..fed65fd9 100644 --- a/PARR.API/MappingProfiles/DomainToResponseProfile.cs +++ b/PARR.API/MappingProfiles/DomainToResponseProfile.cs @@ -382,7 +382,8 @@ namespace PARR.API.MappingProfiles .ForMember(d => d.IsWorkGroupTimezone, o => o.MapFrom(s => s.IsResponseAreaTimezone)); CreateMap() - .ForMember(d => d.Name, o => o.MapFrom(s => s.GroupName)); + .ForMember(d => d.Name, o => o.MapFrom(s => s.GroupName)) + .ForMember(d => d.IsWorkGroupTimezone, o => o.MapFrom(s => s.IsResponseAreaTimezone)); CreateMap() .ForMember(d => d.DistributionConfig, o => o.MapFrom(s => s.DistributionConfig));