9 lines
169 B
Python
9 lines
169 B
Python
from django.http import HttpResponseRedirect
|
|
from django.urls import reverse
|
|
|
|
|
|
def handle_root_path(request):
|
|
return HttpResponseRedirect(reverse('authenticate'))
|
|
|
|
|