summaryrefslogtreecommitdiff
path: root/tbc/urls.py
diff options
context:
space:
mode:
authorhardythe12015-08-14 08:50:35 +0530
committerhardythe12015-08-14 08:50:35 +0530
commit1c72a02860e8d4cb3333384d55f8c7c92c476ebe (patch)
tree4152f0cae7e604c7de41662b5c32a5a85b8714a0 /tbc/urls.py
parente89be11e0a16c52b9fb643f22e9d6b83f784ba40 (diff)
parent4ec13d0acd72e1a4a26abe98d6c5b8b1812a3658 (diff)
downloadPython-TBC-Interface-1c72a02860e8d4cb3333384d55f8c7c92c476ebe.tar.gz
Python-TBC-Interface-1c72a02860e8d4cb3333384d55f8c7c92c476ebe.tar.bz2
Python-TBC-Interface-1c72a02860e8d4cb3333384d55f8c7c92c476ebe.zip
Merge branch 'master' of https://github.com/FOSSEE/Python-TBC-Interface
Diffstat (limited to 'tbc/urls.py')
-rw-r--r--tbc/urls.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tbc/urls.py b/tbc/urls.py
index c558b6e..747a77d 100644
--- a/tbc/urls.py
+++ b/tbc/urls.py
@@ -49,6 +49,8 @@ urlpatterns = patterns('',
url(r'^book-review/(?P<book_id>\d+)$', 'tbc.views.BookReview', name='BookReview'),
url(r'^approve-book/(?P<book_id>\d+)$', 'tbc.views.ApproveBook', name='ApproveBook'),
url(r'^notify-changes/(?P<book_id>\d+)$', 'tbc.views.NotifyChanges', name='NotifyChanges'),
+ url(r'^brokenbooks/$', 'tbc.views.get_broken_books', name='brokenbooks'),
+ url(r'^link-image/$', 'tbc.views.link_image', name='link_image'),
# ajax urls
url(r'^ajax/matching-books/$', 'tbc.views.ajax_matching_books', name='AjaxMatchingBooks'),