- Remove usage of django.urls.patterns - Change urls tuples to lists - Make all string view names callables - This is the third urls update for LMS
11 lines
166 B
Python
11 lines
166 B
Python
"""
|
|
URLs for the rss_proxy djangoapp.
|
|
"""
|
|
from django.conf.urls import url
|
|
|
|
from rss_proxy.views import proxy
|
|
|
|
urlpatterns = [
|
|
url(r'^$', proxy, name='proxy'),
|
|
]
|