mirror of
https://github.com/dkmstr/openuds.git
synced 2024-12-25 23:21:41 +03:00
fixed MFA
This commit is contained in:
parent
aec2f5b57f
commit
57b19757b9
@ -69,7 +69,7 @@ class Authenticator(ManagedObjectModel, TaggingMixin):
|
|||||||
groups: 'models.manager.RelatedManager[Group]'
|
groups: 'models.manager.RelatedManager[Group]'
|
||||||
|
|
||||||
# MFA associated to this authenticator. Can be null
|
# MFA associated to this authenticator. Can be null
|
||||||
mfa = models.ForeignKey(MFA, on_delete=models.SET_NULL, null=True, blank=True, related_name='authenticators')
|
mfa = models.ForeignKey('MFA', on_delete=models.SET_NULL, null=True, blank=True, related_name='authenticators')
|
||||||
|
|
||||||
class Meta(ManagedObjectModel.Meta): # pylint: disable=too-few-public-methods
|
class Meta(ManagedObjectModel.Meta): # pylint: disable=too-few-public-methods
|
||||||
"""
|
"""
|
||||||
|
Loading…
Reference in New Issue
Block a user