Skip to content

Commit

Permalink
chore: fixed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ericbrunner committed Dec 19, 2024
1 parent 91713ea commit 904d482
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,14 @@ public async Task<IEnumerable<Token>> FindTokens(Expression<Func<Token, bool>> f

public async Task<DbPaginationResult<Token>> FindAllTokens(PaginationFilter paginationFilter, Expression<Func<Token, bool>> filter, CancellationToken cancellationToken, bool track = false)
{
var query =(track ? _tokensDbSet : _readonlyTokensDbSet)
var query = (track ? _tokensDbSet : _readonlyTokensDbSet)
.Where(filter);

var dbPaginationResult = await query.OrderAndPaginate(d => d.CreatedAt, paginationFilter, cancellationToken);

return dbPaginationResult;

}

public async Task<Token?> Find(TokenId id, IdentityAddress? activeIdentity, CancellationToken cancellationToken, bool track = false)
{
var token = await _readonlyTokensDbSet
Expand Down

0 comments on commit 904d482

Please sign in to comment.