Compare commits

..

No commits in common. "b8eb97e8e201a5811a1f818d1b170272f1b76d7d" and "211afa39668a494a02064b829dc931471c333e38" have entirely different histories.

3 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
[tool.bumpversion]
current_version = "1.2.20"
current_version = "1.2.19"
commit = true
tag = true
tag_name = "{new_version}"

View File

@ -1 +1 @@
1.2.20
1.2.19

View File

@ -22,7 +22,7 @@ def create_app():
# Schedule the daily account check
scheduler = BackgroundScheduler()
# Pass the app instance to the job
scheduler.add_job(func=lambda: send_expiry_notifications(app), trigger="cron", hour=10, minute=0)
scheduler.add_job(func=lambda: send_expiry_notifications(app), trigger="interval", days=1)
scheduler.start()
# Register blueprints