From 3e0f7a007e829fd76b657d1b6ca7d6f4e17bd78a Mon Sep 17 00:00:00 2001 From: lispyclouds Date: Wed, 8 Feb 2017 15:44:37 +0530 Subject: [PATCH] Update default page after login - This fixes the redirect to the index page instead of apps:index post login --- plinth/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plinth/__main__.py b/plinth/__main__.py index 9af5cf4a6..67945be38 100644 --- a/plinth/__main__.py +++ b/plinth/__main__.py @@ -224,7 +224,7 @@ def configure_django(): INSTALLED_APPS=applications, LOGGING=logging_configuration, LOGIN_URL='users:login', - LOGIN_REDIRECT_URL='apps:index', + LOGIN_REDIRECT_URL='index', MESSAGE_TAGS={message_constants.ERROR: 'danger'}, MIDDLEWARE_CLASSES=( 'django.contrib.sessions.middleware.SessionMiddleware',