diff options
author | Rodney Ewing <ewing.rj@gmail.com> | 2013-05-27 08:54:25 -0700 |
---|---|---|
committer | Rodney Ewing <ewing.rj@gmail.com> | 2013-05-27 08:54:25 -0700 |
commit | 3b8c733b98533e6dd7612f071b672b19a97ecf1e (patch) | |
tree | d7cfc5abff81f1c24800819d57d80785357ec34e /mediagoblin/auth/__init__.py | |
parent | 3bcdc49088a9fe779b1b95fb1dc42d9ef0c4de00 (diff) | |
download | mediagoblin-3b8c733b98533e6dd7612f071b672b19a97ecf1e.tar.lz mediagoblin-3b8c733b98533e6dd7612f071b672b19a97ecf1e.tar.xz mediagoblin-3b8c733b98533e6dd7612f071b672b19a97ecf1e.zip |
no need for check_login with the new check_login_simple function
Diffstat (limited to 'mediagoblin/auth/__init__.py')
-rw-r--r-- | mediagoblin/auth/__init__.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/mediagoblin/auth/__init__.py b/mediagoblin/auth/__init__.py index ae6c4b96..8cb1f401 100644 --- a/mediagoblin/auth/__init__.py +++ b/mediagoblin/auth/__init__.py @@ -16,13 +16,6 @@ from mediagoblin.tools.pluginapi import hook_handle, hook_runall -def check_login(user, password): - result = hook_handle("auth_check_login", user, password) - if result: - return result - return False - - def get_user(username): return hook_handle("auth_get_user", username) |