fix loading public posts

This commit is contained in:
john 2025-05-21 13:52:12 +02:00
parent 3f1c6280ba
commit dc999fd7cc
3 changed files with 3 additions and 5 deletions

View file

@ -76,6 +76,6 @@ public class PostsController(IBlogModule blogModule, ICurrentUserContext current
[Authorize]
public async Task DeletePost(Guid postId, CancellationToken cancellationToken)
{
await blogModule.Command(new DeletePostCommand(postId, currentUserContext.CurrentUser.Id), cancellationToken);
await blogModule.Command(new DeletePostCommand(postId, currentUserContext.CurrentUser!.Id), cancellationToken);
}
}