Skip to content

Commit

Permalink
fix: include issuer (#396)
Browse files Browse the repository at this point in the history
  • Loading branch information
Vzart authored Jul 30, 2023
1 parent c9f4e7e commit b2e7c99
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ public async Task<ImportRequestDto> Handle(Query request, CancellationToken canc
{
var importRequest = await _context.ImportRequests
.Include(x => x.Document)
.ThenInclude(x => x.Importer)
.Include(x => x.Room)
.FirstOrDefaultAsync(x => x.Id.Equals(request.RequestId), cancellationToken);

Expand Down

0 comments on commit b2e7c99

Please sign in to comment.