diff options
author | Rodney Ewing <ewing.rj@gmail.com> | 2013-05-17 11:03:41 -0700 |
---|---|---|
committer | Rodney Ewing <ewing.rj@gmail.com> | 2013-05-24 16:52:49 -0700 |
commit | 14efa7bdf19cf4042fe6455c0f9516f5b2d91a0c (patch) | |
tree | 773e297dc322bfdf9b4212ce8457d9dcfe651392 /mediagoblin/auth/__init__.py | |
parent | c9dec8b3cc2c2db306256d9eb12cdd44bf96a56c (diff) | |
download | mediagoblin-14efa7bdf19cf4042fe6455c0f9516f5b2d91a0c.tar.lz mediagoblin-14efa7bdf19cf4042fe6455c0f9516f5b2d91a0c.tar.xz mediagoblin-14efa7bdf19cf4042fe6455c0f9516f5b2d91a0c.zip |
moved fake_login_attempt to plugins
Diffstat (limited to 'mediagoblin/auth/__init__.py')
-rw-r--r-- | mediagoblin/auth/__init__.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mediagoblin/auth/__init__.py b/mediagoblin/auth/__init__.py index 60cbdb0e..ffa94212 100644 --- a/mediagoblin/auth/__init__.py +++ b/mediagoblin/auth/__init__.py @@ -49,3 +49,7 @@ def get_registration_form(request): def gen_password_hash(raw_pass, extra_salt=None): return hook_handle("auth_gen_password_hash", raw_pass, extra_salt) + + +def fake_login_attempt(): + return hook_handle("auth_fake_login_attempt") |