Renames StoredDataUrls to Images

This commit is contained in:
Jonathan Bourdon
2024-08-06 01:04:15 -04:00
parent db740c161c
commit d370c2a151
12 changed files with 33 additions and 737 deletions

View File

@@ -27,7 +27,7 @@ public class GetSubscriptionsHandler(
.Select(s => new SubscriptionModel(
s.CreatorId,
s.Creator!.Name,
s.Creator.StoredDataUrls.ProfilePictureUrl))
s.Creator.Images.Logo))
.ToListAsync(cancellationToken: ct);
await SendOkAsync(subscriptions, ct);