瀏覽代碼

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')),