Implement converting prices #79

Merged
lukas merged 22 commits from converted_prices into main 2024-11-11 16:36:58 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 63e307d251 - Show all commits

View File

@ -22,7 +22,7 @@ def schedule_tasks(sender, **kwargs):
schedule(
"games.convert_price.update_converted_prices",
name="Update converted prices",
schedule_type=Schedule.HOURLY,
schedule_type=Schedule.MINUTES,
next_run=now() + timedelta(seconds=30),
)

View File

@ -14,7 +14,7 @@ class Command(BaseCommand):
schedule(
"games.convert_price.update_converted_prices",
name="Update converted prices",
schedule_type=Schedule.HOURLY,
schedule_type=Schedule.MINUTES,
next_run=now() + timedelta(seconds=30),
)
self.stdout.write(