aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/plugins/openid/__init__.py
diff options
context:
space:
mode:
authorRodney Ewing <ewing.rj@gmail.com>2013-07-03 08:09:06 -0700
committerChristopher Allan Webber <cwebber@dustycloud.org>2013-07-03 13:49:17 -0500
commitc92b3c63b13ad44e8485a577f5fb768c9bdc1f94 (patch)
tree3c84cc22fb87081ed62de5c9143dcdfde5701666 /mediagoblin/plugins/openid/__init__.py
parentfea0b3b289154c96017021d25b0ed455d6f7f7b4 (diff)
downloadmediagoblin-c92b3c63b13ad44e8485a577f5fb768c9bdc1f94.tar.lz
mediagoblin-c92b3c63b13ad44e8485a577f5fb768c9bdc1f94.tar.xz
mediagoblin-c92b3c63b13ad44e8485a577f5fb768c9bdc1f94.zip
changed hook name to reuse with persona
Diffstat (limited to 'mediagoblin/plugins/openid/__init__.py')
-rw-r--r--mediagoblin/plugins/openid/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/mediagoblin/plugins/openid/__init__.py b/mediagoblin/plugins/openid/__init__.py
index 1ee60fbf..ee88808c 100644
--- a/mediagoblin/plugins/openid/__init__.py
+++ b/mediagoblin/plugins/openid/__init__.py
@@ -57,9 +57,9 @@ def setup_plugin():
pluginapi.register_template_path(os.path.join(PLUGIN_DIR, 'templates'))
pluginapi.register_template_hooks(
- {'openid_register_link': 'mediagoblin/plugins/openid/register_link.html',
- 'openid_login_link': 'mediagoblin/plugins/openid/login_link.html',
- 'openid_edit_link': 'mediagoblin/plugins/openid/edit_link.html'})
+ {'register_link': 'mediagoblin/plugins/openid/register_link.html',
+ 'login_link': 'mediagoblin/plugins/openid/login_link.html',
+ 'edit_link': 'mediagoblin/plugins/openid/edit_link.html'})
def create_user(register_form):