summaryrefslogtreecommitdiff
path: root/backend/urls.py
diff options
context:
space:
mode:
authorMaksim A. Boyko <maksim.a.boyko@gmail.com>2012-06-28 16:50:58 -0400
committerMaksim A. Boyko <maksim.a.boyko@gmail.com>2012-06-28 16:50:58 -0400
commitd69176016b18212b03bcd18b4b42629e0816de0f (patch)
tree8e0b943d0a3d2750d9b11c6d12f4f75d2d3c0853 /backend/urls.py
parent150857d66f47a87e7cfd0bd862428528db6dc362 (diff)
Backend: Add stat view and stat template skeleton
Diffstat (limited to 'backend/urls.py')
-rw-r--r--backend/urls.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/backend/urls.py b/backend/urls.py
index 2d9d8be..98bc4e4 100644
--- a/backend/urls.py
+++ b/backend/urls.py
@@ -32,4 +32,6 @@ urlpatterns = patterns('',
url(r'^video/unlike/$', 'backend.views.api_video_unlike'),
url(r'^video/remove/$', 'backend.views.api_video_remove'),
url(r'^video/search/$', 'backend.views.api_video_search'),
+ #
+ url(r'^stats/$', 'backend.views.stats'),
)