summaryrefslogtreecommitdiff
path: root/tbc/urls.py
diff options
context:
space:
mode:
authorKing2015-08-12 12:09:54 +0530
committerKing2015-08-12 12:09:54 +0530
commita1da7a9d05292c6e99f206a8f29c46a0dd7febfc (patch)
tree95e0d810c9d43f4ad9289038a10725e3c42bdaf2 /tbc/urls.py
parent5ea568246060dc8757be70eb22826f38cc720282 (diff)
parentb13f51268caacf987365c3cda89b812d9d1b2255 (diff)
downloadPython-TBC-Interface-a1da7a9d05292c6e99f206a8f29c46a0dd7febfc.tar.gz
Python-TBC-Interface-a1da7a9d05292c6e99f206a8f29c46a0dd7febfc.tar.bz2
Python-TBC-Interface-a1da7a9d05292c6e99f206a8f29c46a0dd7febfc.zip
Merge pull request #19 from prathamesh920/PR_link_chapter_image
interface to fix broken books.
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'),