Files
edx-platform/lms/djangoapps/teams/urls.py
2015-06-03 18:04:17 +00:00

11 lines
242 B
Python

"""Defines the URL routes for this app."""
from django.conf.urls import patterns, url
from .views import TeamsDashboardView
urlpatterns = patterns(
'teams.views',
url(r"^/$", TeamsDashboardView.as_view(), name="teams_dashboard")
)