- Remove usage of django.urls.patterns - Change urls tuples to lists - Make all string view names callables
11 lines
218 B
Python
11 lines
218 B
Python
"""
|
|
Urls for verifying health (heartbeat) of the app.
|
|
"""
|
|
from django.conf.urls import url
|
|
|
|
from openedx.core.djangoapps.heartbeat.views import heartbeat
|
|
|
|
urlpatterns = [
|
|
url(r'^$', heartbeat, name='heartbeat'),
|
|
]
|