Files
edx-platform/lms/djangoapps/teams/urls.py
2021-11-19 15:10:58 +05:00

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")
]