new apps.lyric.urls, .tests.test_views files to test & execute mock email sending; apps.lyric.models, .tests.test_models now test & execute unique token autogen to integrate w. magic link login using only email; core.settings updated w. new urlpatterns to accommodate
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
# from django.contrib import admin
|
||||
from django.urls import include, path
|
||||
from apps.dashboard import views as list_views
|
||||
from apps.dashboard import views as dash_views
|
||||
|
||||
urlpatterns = [
|
||||
# path('admin/', admin.site.urls),
|
||||
path('', list_views.home_page, name='home'),
|
||||
path('', dash_views.home_page, name='home'),
|
||||
path('apps/dashboard/', include('apps.dashboard.urls')),
|
||||
path('apps/lyric/', include('apps.lyric.urls')),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user