feat(api): JobGroupResponse, TemplateResponse - отображение настроек автораспределения

This commit is contained in:
Mikhail Trubnikov
2026-01-22 14:05:48 +10:00
parent 1845154b26
commit 9e84ef8029
7 changed files with 60 additions and 5 deletions

View File

@@ -48,7 +48,11 @@ namespace PARR.DAL.Services.Implementations
.ThenInclude(p => p!.Process)
.Include(t => t.Job)
.ThenInclude(t => t!.Group)
.ThenInclude(t => t!.GroupType);
.ThenInclude(t => t!.GroupType)
.Include(t => t.Job)
.ThenInclude(t => t!.Group)
.ThenInclude(t => t.DistributionConfig)
.ThenInclude(t => t.DistributionPeriod);
}
public override Task<bool> CreateAsync(Template obj)