Skip to content

Commit

Permalink
Merge pull request #224 from UnitapApp/fix/bug
Browse files Browse the repository at this point in the history
change single-claim cutoff time to 12 december
  • Loading branch information
Bastin authored Dec 16, 2023
2 parents 5f28f46 + a1e1949 commit f24c332
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions faucet/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,9 @@ def get_queryset(self):
ClaimReceipt.PENDING,
ClaimReceipt.REJECTED,
],
# Monday 12 December 2023
datetime__lt=datetime.datetime(
2023, 12, 12, 0, 0, 0, 0, pytz.timezone("UTC")
# 1 December 2023
datetime__gte=datetime.datetime(
2023, 12, 1, 0, 0, 0, 0, pytz.timezone("UTC")
), # also change in credit_strategy.py
).order_by("-pk")

Expand Down

0 comments on commit f24c332

Please sign in to comment.