Skip to content

Commit

Permalink
fixed redirect url
Browse files Browse the repository at this point in the history
  • Loading branch information
ridwaanhall committed Sep 17, 2024
1 parent 4f022f4 commit 2c73991
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website_mabar/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

urlpatterns = [
path('admin/', admin.site.urls),
path('', lambda request: redirect('admin/mabar/mabar/')),
path('', lambda request: redirect('public/list-mabar/')),
path('public/', include('mabar.urls')),
path('public/', lambda request: redirect('list-mabar/')),
]

0 comments on commit 2c73991

Please sign in to comment.