summaryrefslogtreecommitdiffstats
path: root/askbot/urls.py
diff options
context:
space:
mode:
authorAdolfo Fitoria <adolfo.fitoria@gmail.com>2012-09-07 16:02:33 -0600
committerAdolfo Fitoria <adolfo.fitoria@gmail.com>2012-09-10 16:55:33 -0600
commit72b7105b032fe501d0b4d8183850a51dff1f5c09 (patch)
tree430d84ca68d4810bab83263a333ca01d7d579f45 /askbot/urls.py
parentcb8eafe2320aa2f2d2a47be1fdc77a94d2c6feb5 (diff)
downloadaskbot-72b7105b032fe501d0b4d8183850a51dff1f5c09.tar.gz
askbot-72b7105b032fe501d0b4d8183850a51dff1f5c09.tar.bz2
askbot-72b7105b032fe501d0b4d8183850a51dff1f5c09.zip
Convert answer to comment.
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 7fd0bb1f..02592cfd 100644
--- a/askbot/urls.py
+++ b/askbot/urls.py
@@ -164,6 +164,11 @@ urlpatterns = patterns('',
views.writers.comment_to_answer,
name='comment_to_answer'
),
+ url(#post only
+ r'^answer/convert/$',
+ views.writers.answer_to_comment,
+ name='answer_to_comment'
+ ),
url(
r'^%s$' % _('tags/'),
views.readers.tags,