Skip to content

Commit

Permalink
url reconfiguration well
Browse files Browse the repository at this point in the history
  • Loading branch information
devfemibadmus committed Feb 13, 2024
1 parent b08d020 commit 2958c23
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions emailserver/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@
urlpatterns = [
path('', include('website.urls')),
path('admin/', admin.site.urls),
path('server/', include('server.urls')),
]
1 change: 1 addition & 0 deletions server/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@

urlpatterns = [
path('', views.server, name='server'),
path('domain/', views.DomainView.as_view(), name='domain_with_param'),
path('domain/<str:domain>/', views.DomainView.as_view(), name='domain_with_param'),
]
2 changes: 0 additions & 2 deletions website/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,4 @@
path('signin/', views.LoginPage.as_view(), name='login'),
path('signout/', views.signout, name='signout'),
path('signup/', views.SignupPage.as_view(), name='signup'),

path('server', include('server.urls')),
]

0 comments on commit 2958c23

Please sign in to comment.