Skip to content

Commit

Permalink
Redirect root URL to 'maia/' for improved navigation
Browse files Browse the repository at this point in the history
  • Loading branch information
SimoneBendazzoli93 committed Feb 9, 2025
1 parent fd5c21d commit 1573a2e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dashboard/core/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@

from django.contrib import admin
from django.urls import path, include # add this
from django.shortcuts import redirect

urlpatterns = [
path('', lambda request: redirect('maia/', permanent=True)),
path('admin/', admin.site.urls),
path('maia/resources',include("apps.resources.urls")),
path('maia/user-management/',include("apps.user_management.urls")),#path('app',include("apps.deploy_app.urls")),
Expand Down

0 comments on commit 1573a2e

Please sign in to comment.