diff --git a/alerts/tasks.py b/alerts/tasks.py index ef19f0d..e4d60ea 100644 --- a/alerts/tasks.py +++ b/alerts/tasks.py @@ -80,7 +80,7 @@ def _send_alert(issue_id, state_description, alert_article, alert_reason, **kwar "state_description": state_description, "alert_article": alert_article, "alert_reason": alert_reason, - "settings_url": get_settings().BASE_URL + "/", # TODO + "settings_url": get_settings().BASE_URL + "/accounts/preferences/", **kwargs, }, ) diff --git a/alerts/views.py b/alerts/views.py index 754a14e..a683a5a 100644 --- a/alerts/views.py +++ b/alerts/views.py @@ -10,7 +10,7 @@ DEBUG_CONTEXTS = { "alert_article": "a", "alert_reason": "NEW", "issue_url": get_settings().BASE_URL + "/issues/issue/00000000-0000-0000-0000-000000000000/", - "settings_url": get_settings().BASE_URL + "/", # TODO + "settings_url": get_settings().BASE_URL + "/accounts/preferences/", }, }