mirror of https://github.com/jumpserver/jumpserver
parent
07caaa5e46
commit
b3cd9d50c9
|
@ -12,12 +12,13 @@ class AuthFailedNeedLogMixin:
|
||||||
username = ''
|
username = ''
|
||||||
request = None
|
request = None
|
||||||
error = ''
|
error = ''
|
||||||
|
msg = ''
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
super().__init__(*args, **kwargs)
|
super().__init__(*args, **kwargs)
|
||||||
post_auth_failed.send(
|
post_auth_failed.send(
|
||||||
sender=self.__class__, username=self.username,
|
sender=self.__class__, username=self.username,
|
||||||
request=self.request, reason=self.error
|
request=self.request, reason=self.msg
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue