aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/auth/routing.py
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2011-07-29 08:22:26 -0500
committerChristopher Allan Webber <cwebber@dustycloud.org>2011-07-29 08:22:26 -0500
commit0bc036209dab581ad60b97231473c832fca9e875 (patch)
tree0ee3a19f3f1e3116b8a33e2da0e758c7984c3799 /mediagoblin/auth/routing.py
parent7074304c91bfc19e2a6365f3d9567ec5a2636f9d (diff)
downloadmediagoblin-0bc036209dab581ad60b97231473c832fca9e875.tar.lz
mediagoblin-0bc036209dab581ad60b97231473c832fca9e875.tar.xz
mediagoblin-0bc036209dab581ad60b97231473c832fca9e875.zip
Redirect to the user's profile after registration
- Updated the view - Updated the tests - Fixed a weirdness in the registration view where the 'user' variable used to be called 'entry'
Diffstat (limited to 'mediagoblin/auth/routing.py')
-rw-r--r--mediagoblin/auth/routing.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/mediagoblin/auth/routing.py b/mediagoblin/auth/routing.py
index a50afb48..9547b3ea 100644
--- a/mediagoblin/auth/routing.py
+++ b/mediagoblin/auth/routing.py
@@ -19,9 +19,6 @@ from routes.route import Route
auth_routes = [
Route('mediagoblin.auth.register', '/register/',
controller='mediagoblin.auth.views:register'),
- Route('mediagoblin.auth.register_success', '/register/success/',
- template='mediagoblin/auth/register_success.html',
- controller='mediagoblin.views:simple_template_render'),
Route('mediagoblin.auth.login', '/login/',
controller='mediagoblin.auth.views:login'),
Route('mediagoblin.auth.logout', '/logout/',