summaryrefslogtreecommitdiffstats
path: root/askbot/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'askbot/urls.py')
-rw-r--r--askbot/urls.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/askbot/urls.py b/askbot/urls.py
index 640cb51e..1ab3ea5d 100644
--- a/askbot/urls.py
+++ b/askbot/urls.py
@@ -130,6 +130,11 @@ urlpatterns = patterns('',
name = 'upvote_comment'
),
url(#ajax only
+ r'^post/delete/$',
+ views.commands.delete_post,
+ name = 'delete_post'
+ ),
+ url(#ajax only
r'^post_comments/$',
views.writers.post_comments,
name='post_comments'