Skip to content

Commit

Permalink
Adjust backup notification
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean28518 committed Mar 26, 2024
1 parent 9fb76f3 commit 9fb25d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lac/idm/challenges.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def get_all_libre_workspace_challenges():
date_string = backup_information["last_backup"]["date"]
date = datetime.datetime.strptime(date_string, "%Y-%m-%d")
if (datetime.datetime.now() - date).days > 7:
challenges.append({"text": "Das letzte Backup ist älter als 7 Tage.", "link": reverse("unix_index")})
challenges.append({"text": "Das letzte vollständige Backup ist älter als 7 Tage.", "link": reverse("unix_index")})

# Challenge 8: Are the email settings configured and working?
if not unix_email.are_mail_settings_configured():
Expand Down

0 comments on commit 9fb25d4

Please sign in to comment.