diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-04-03 13:35:18 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-04-03 13:35:18 -0500 |
commit | 24181820162ad73823dcebf902c951200b90559b (patch) | |
tree | 5a19429397f0b3e2e85aff55e143ad492733c0b0 /mediagoblin/routing.py | |
parent | a0598d5cae99f1a8c01c01390dff5f1f94e12d0f (diff) | |
download | mediagoblin-24181820162ad73823dcebf902c951200b90559b.tar.lz mediagoblin-24181820162ad73823dcebf902c951200b90559b.tar.xz mediagoblin-24181820162ad73823dcebf902c951200b90559b.zip |
Registering almost works right :)
Diffstat (limited to 'mediagoblin/routing.py')
-rw-r--r-- | mediagoblin/routing.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mediagoblin/routing.py b/mediagoblin/routing.py index c60f121c..f5b67f38 100644 --- a/mediagoblin/routing.py +++ b/mediagoblin/routing.py @@ -16,6 +16,9 @@ from routes import Mapper +from mediagoblin.auth.routing import auth_routes + + def get_mapper(): mapping = Mapper() mapping.minimization = False @@ -27,4 +30,8 @@ def get_mapper(): "test_submit", "/test_submit/", controller="mediagoblin.views:submit_test") + mapping.extend(auth_routes, '/auth') + return mapping + + |