- Remove usage of django.urls.patterns - Change urls tuples to lists - Make all string view names callables - This is the second of several urls updates for LMS; a work in progress
9 lines
163 B
Python
9 lines
163 B
Python
"""
|
|
Urls for the django_comment_client.
|
|
"""
|
|
from django.conf.urls import include, url
|
|
|
|
urlpatterns = [
|
|
url(r'', include('django_comment_client.base.urls')),
|
|
]
|