Add redirect URL for musician index

This commit is contained in:
Santiago L 2024-01-25 13:36:10 +01:00
parent d3b3547811
commit 216c4d9419
1 changed files with 3 additions and 0 deletions

View File

@ -5,12 +5,15 @@ URL routes definition.
Describe the paths where the views are accesible. Describe the paths where the views are accesible.
""" """
from django.urls import path from django.urls import path
from django.views.generic import RedirectView
from . import views from . import views
app_name = 'musician' app_name = 'musician'
urlpatterns = [ urlpatterns = [
path('', RedirectView.as_view(pattern_name='musician:dashboard', permanent=False), name='index'),
path('auth/login/', views.LoginView.as_view(), name='login'), path('auth/login/', views.LoginView.as_view(), name='login'),
path('auth/logout/', views.LogoutView.as_view(), name='logout'), path('auth/logout/', views.LogoutView.as_view(), name='logout'),
path('dashboard/', views.DashboardView.as_view(), name='dashboard'), path('dashboard/', views.DashboardView.as_view(), name='dashboard'),