mirror of
https://github.com/dkmstr/openuds.git
synced 2024-12-24 21:34: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]'
|
||||
|
||||
# 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
|
||||
"""
|
||||
|
Loading…
Reference in New Issue
Block a user