chore: fix pre-existing dotnet-format whitespace drift

Purely mechanical (object-initializer line-splitting per the project's format
rules) — no behavior change. This drift on develop was blocking the pre-commit
hook's solution-wide 'dotnet format --verify-no-changes' check for unrelated
commits. Verified: diff is cosmetic only (spot-checked), build + all 39 tests
still pass.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
cesnimda
2026-07-01 21:02:32 +02:00
parent dfd8579899
commit 81fc05299d
5 changed files with 56 additions and 39 deletions
@@ -42,8 +42,15 @@ public class WidgetLayoutController : ApiControllerBase
{
_db.WidgetLayouts.Add(new WidgetLayout
{
UserId = UserId, WidgetKey = dto.WidgetKey, X = dto.X, Y = dto.Y, W = dto.W, H = dto.H,
Visible = dto.Visible, SortOrder = dto.SortOrder, SettingsJson = dto.SettingsJson
UserId = UserId,
WidgetKey = dto.WidgetKey,
X = dto.X,
Y = dto.Y,
W = dto.W,
H = dto.H,
Visible = dto.Visible,
SortOrder = dto.SortOrder,
SettingsJson = dto.SettingsJson
});
}
}
@@ -79,7 +79,10 @@ public class SearchService : ISearchService
return new PagedResult<EmailSummaryDto>
{
Items = items, Page = r.Page, PageSize = r.PageSize, TotalCount = total
Items = items,
Page = r.Page,
PageSize = r.PageSize,
TotalCount = total
};
}
}
@@ -268,8 +268,12 @@ public class SyncService : ISyncService
{
_db.Attachments.Add(new Attachment
{
UserId = userId, EmailId = email.Id, FileName = Trunc(fileName, 512) ?? string.Empty,
MimeType = Trunc(mime, 255), SizeBytes = size, GmailAttachmentId = attId
UserId = userId,
EmailId = email.Id,
FileName = Trunc(fileName, 512) ?? string.Empty,
MimeType = Trunc(mime, 255),
SizeBytes = size,
GmailAttachmentId = attId
});
}
@@ -338,8 +342,11 @@ public class SyncService : ISyncService
if (thread is not null) return thread;
thread = new MailThread
{
UserId = userId, GmailThreadId = gmailThreadId, Subject = Trunc(subject, 1024),
Snippet = Trunc(snippet, 2048), FirstMessageUtc = sentAt
UserId = userId,
GmailThreadId = gmailThreadId,
Subject = Trunc(subject, 1024),
Snippet = Trunc(snippet, 2048),
FirstMessageUtc = sentAt
};
_db.Threads.Add(thread);
return thread;