Explorar el Código

Change home view based on user type

Mohidul Islam hace 4 años
padre
commit
7efc88a366
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      review_automation/urls.py

+ 2 - 2
review_automation/urls.py

@@ -3,10 +3,10 @@ from django.contrib import admin
 from django.urls import path, include
 from django.conf.urls.static import static
 
-from dashboard.views import UnRepliedReviewList
+from user.views import LoginRedirectURL
 
 urlpatterns = [
-    path('', UnRepliedReviewList.as_view()),
+    path('', LoginRedirectURL.as_view()),
     path('admin/', admin.site.urls),
     path('', include('gauth.urls')),
     path('nlu/', include('nlu_job.urls')),