Document_Manager #129

Merged
ashutosh.nehete merged 83 commits from Document_Manager into main 2025-09-11 04:12:01 +00:00
Showing only changes of commit 961cc018cf - Show all commits

View File

@ -544,7 +544,11 @@ namespace Marco.Pms.Services.Controllers
// Retrieve the tags that belong to the specified tenant and project only the names (performance: projection)
var tags = await context.DocumentTagMasters
.Where(dt => dt.TenantId == tenantId)
.Select(dt => dt.Name)
.Select(dt => new
{
Name = dt.Name,
IsActive = true
})
.ToListAsync();
_logger.LogInfo("Successfully retrieved {TagCount} document tags for tenant {TenantId}.", tags.Count, tenantId);