1
0
mirror of https://github.com/dkmstr/openuds.git synced 2024-12-24 21:34:41 +03:00

fixed MFA

This commit is contained in:
Adolfo Gómez García 2022-06-28 16:40:35 +02:00
parent aec2f5b57f
commit 57b19757b9

View File

@ -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
"""