소스 검색

Change home view based on user type

Mohidul Islam 4 년 전
부모
커밋
7efc88a366
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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')),