Browse Source

login() renamed to _login() in 8.0

pull/206/head
Charbel Jacquin 9 years ago
parent
commit
86e3f414cc
  1. 2
      base_concurrency/res_users.py

2
base_concurrency/res_users.py

@ -87,7 +87,7 @@ class ResUsers(orm.Model):
}
# Re-defining the login function in order to use the new table
def login(self, db, login, password):
def _login(self, db, login, password):
if not password:
return False
user_id = False

Loading…
Cancel
Save