diff --git a/plinth/views.py b/plinth/views.py index df6c5dd77..af32e0b4f 100644 --- a/plinth/views.py +++ b/plinth/views.py @@ -28,10 +28,7 @@ from plinth import package as package_module def index(request): """Serve the main index page.""" - if request.user.is_authenticated(): - return HttpResponseRedirect(reverse('apps:index')) - - return HttpResponseRedirect(reverse('help:about')) + return HttpResponseRedirect(reverse('apps:index')) class PackageInstallView(TemplateView):