13 lines
188 B
Python
13 lines
188 B
Python
"""
|
|
Branding API endpoint urls.
|
|
"""
|
|
|
|
|
|
from django.urls import path
|
|
|
|
from lms.djangoapps.branding.views import footer
|
|
|
|
urlpatterns = [
|
|
path('footer', footer, name="branding_footer"),
|
|
]
|