14 lines
275 B
Python
14 lines
275 B
Python
"""
|
|
Defines the URL routes for this app.
|
|
"""
|
|
|
|
|
|
from django.urls import path
|
|
from django.contrib.auth.decorators import login_required
|
|
|
|
from .views import TeamsDashboardView
|
|
|
|
urlpatterns = [
|
|
path('', login_required(TeamsDashboardView.as_view()), name="teams_dashboard")
|
|
]
|