Skip to content

Commit

Permalink
Create invoices for all campaigns
Browse files Browse the repository at this point in the history
  • Loading branch information
peterpolman committed Jun 13, 2024
1 parent 997de4b commit 594295e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/api/src/app/services/InvoiceService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default class InvoiceService {
];

// Get all relevant pools
const pools = await Pool.find({ 'settings.isPublished': true });
const pools = await Pool.find({});
const questEntriesByCampaign = await Promise.all(
pools.map(async (pool) => {
const uniqueEntriesByVariant = await Promise.all(
Expand Down

0 comments on commit 594295e

Please sign in to comment.