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
|
@ -12,6 +12,10 @@ class AppTokenInternalAuth(object):
|
|||
""" Forces all internal credential login to go through an app token, by disabling all other
|
||||
access.
|
||||
"""
|
||||
@property
|
||||
def supports_fresh_login(self):
|
||||
# Since there is no password.
|
||||
return False
|
||||
|
||||
@property
|
||||
def federated_service(self):
|
||||
|
|
Reference in a new issue