Disable fresh login check in auth engines that won't support it
This commit is contained in:
parent
524d77f527
commit
2214a2c7ad
5 changed files with 20 additions and 2 deletions
|
@ -5,6 +5,10 @@ class DatabaseUsers(object):
|
|||
def federated_service(self):
|
||||
return None
|
||||
|
||||
@property
|
||||
def supports_fresh_login(self):
|
||||
return True
|
||||
|
||||
def ping(self):
|
||||
""" Always assumed to be working. If the DB is broken, other checks will handle it. """
|
||||
return (True, None)
|
||||
|
|
Reference in a new issue