perf: 修改account密码加载

This commit is contained in:
ibuler
2021-07-15 19:11:53 +08:00
committed by Jiangjie.Bai
parent 5d373c0137
commit c318762f82
4 changed files with 6 additions and 1 deletions

View File

@@ -27,7 +27,6 @@ class AuthBook(BaseUser, AbsConnectivity):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.auth_snapshot = {}
self.load_auth()
def get_or_systemuser_attr(self, attr):
val = getattr(self, attr, None)

View File

@@ -141,6 +141,7 @@ class AuthMixin:
else:
authbooks.sort(key=lambda x: 1 if x.username == username else 0, reverse=True)
authbook = authbooks[0]
authbook.load_auth()
self.password = authbook.password
self.private_key = authbook.private_key
self.public_key = authbook.public_key