- 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
12 lines
178 B
Python
12 lines
178 B
Python
"""
|
|
Branding API endpoint urls.
|
|
"""
|
|
|
|
from django.conf.urls import url
|
|
|
|
from branding.views import footer
|
|
|
|
urlpatterns = [
|
|
url(r"^footer$", footer, name="branding_footer"),
|
|
]
|