Commit cd869d29 by Robert Raposa

Move performance.views to its own urls.py.

parent 8a9cf7e1
......@@ -35,7 +35,8 @@ urlpatterns = (
# Event tracking endpoints
url(r'', include('track.urls')),
url(r'^performance$', 'openedx.core.djangoapps.performance.views.performance_log'),
# Performance endpoints
url(r'', include('openedx.core.djangoapps.performance.urls')),
# TODO: Is this used anymore? What is STATIC_GRAB?
url(r'^t/(?P<template>[^/]*)$', 'static_template_view.views.index'),
......
"""
URLs for performance app
"""
from django.conf.urls import patterns, url
urlpatterns = patterns(
'openedx.core.djangoapps.performance.views',
url(r'^performance$', 'performance_log'),
)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment