Include Airy theme by default
[mediagoblin.git] / mediagoblin / auth / routing.py
index 14e87133d3a0b31115f07625a6ea022c3240ae3a..15d8fc3ce670885d5ad15181dd8e0f2ccd4dc1a8 100644 (file)
@@ -1,5 +1,5 @@
 # GNU MediaGoblin -- federated, autonomous media hosting
-# Copyright (C) 2011 Free Software Foundation, Inc
+# Copyright (C) 2011, 2012 MediaGoblin contributors.  See AUTHORS.
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as published by
@@ -31,15 +31,8 @@ auth_routes = [
           '/resend_verification_success/',
           template='mediagoblin/auth/resent_verification_email.html',
           controller='mediagoblin.views:simple_template_render'),
-    Route('mediagoblin.auth.forgot_password', '/forgotpass/',
+    Route('mediagoblin.auth.forgot_password', '/forgot_password/',
           controller='mediagoblin.auth.views:forgot_password'),
-    Route('mediagoblin.auth.verify_forgot_password', '/verifyforgotpass/',
-          controller='mediagoblin.auth.views:verify_forgot_password'),
-    Route('mediagoblin.auth.fp_changed_success',
-          '/fp_changed_success/',
-          template='mediagoblin/auth/fp_changed_success.html',
-          controller='mediagoblin.views:simple_template_render'),
-    Route('mediagoblin.auth.fp_email_sent',
-          '/fp_email_sent/',
-          template='mediagoblin/auth/fp_email_sent.html',
-          controller='mediagoblin.views:simple_template_render')]
+    Route('mediagoblin.auth.verify_forgot_password',
+          '/forgot_password/verify/',
+          controller='mediagoblin.auth.views:verify_forgot_password')]