Add a Creator property on Content

This commit is contained in:
Jonathan Bourdon
2024-08-03 23:23:37 -04:00
parent 0340904847
commit e560dfccc1
4 changed files with 18 additions and 24 deletions

View File

@@ -26,7 +26,7 @@ public class GetContent(
{
var content = await context
.Contents
.FirstOrDefaultAsync(
.SingleOrDefaultAsync(
c => c.Id == req.ContentId,
cancellationToken: ct);