From 3c0fd37a4d2b0c158dd2e91715ce02f3b3ec5133 Mon Sep 17 00:00:00 2001 From: Graham Mainwaring Date: Tue, 17 Dec 2019 14:39:35 -0500 Subject: [PATCH] Set a default value for LOGIN_REDIRECT_URL --- awx/api/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/awx/api/conf.py b/awx/api/conf.py index b2cb2a641c..493eed6981 100644 --- a/awx/api/conf.py +++ b/awx/api/conf.py @@ -67,6 +67,7 @@ register( field_class=fields.CharField, allow_blank=True, required=False, + default='', label=_('Login redirect override URL'), help_text=_('URL to which unauthorized users will be redirected to log in. ' 'If blank, users will be sent to the Tower login page.'),