summaryrefslogtreecommitdiffstats
path: root/askbot/urls.py
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-07-30 02:02:44 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-07-30 02:02:44 -0400
commit9c4317418904e849845da32c35f1eb225b0f4f78 (patch)
tree9f08e07c50ad5ce56e2171810b91e71480a13c5a /askbot/urls.py
parenta4445bf35f18b017cf7c9ccb2daf0893253844ae (diff)
downloadaskbot-9c4317418904e849845da32c35f1eb225b0f4f78.tar.gz
askbot-9c4317418904e849845da32c35f1eb225b0f4f78.tar.bz2
askbot-9c4317418904e849845da32c35f1eb225b0f4f78.zip
completed the "admins can post under fake accounts" feature
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 869f7d69..f39371e5 100644
--- a/askbot/urls.py
+++ b/askbot/urls.py
@@ -79,6 +79,11 @@ urlpatterns = patterns('',
name = 'api_get_questions'
),
url(
+ r'^get-users-info/',
+ views.commands.get_users_info,
+ name='get_users_info'
+ ),
+ url(
r'^%s%s$' % (_('questions/'), _('ask/')),
views.writers.ask,
name='ask'