feat: update application URL in launchSettings and enhance task sorting by priority in ProjectBoardListQueryHandler

This commit is contained in:
2026-01-08 10:46:04 +03:30
parent 380ed8f6b1
commit 6f076bdc77
2 changed files with 5 additions and 3 deletions

View File

@@ -53,7 +53,9 @@ public class ProjectBoardListQueryHandler : IBaseQueryHandler<ProjectBoardListQu
.ToDictionaryAsync(x => x.Id, x => x.FullName, cancellationToken);
var result = data .OrderByDescending(x => x.CurrentAssignedUserId == currentUserId)
var result = data
.OrderByDescending(x => x.CurrentAssignedUserId == currentUserId)
.ThenByDescending(x=>x.Task.Priority)
.ThenBy(x => GetStatusOrder(x.Status))
.Select(x =>
{