This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2019-02-24 21:39:09 +00:00
|
|
|
"""passbook captcha factor"""
|
|
|
|
from django.db import models
|
|
|
|
from django.utils.translation import gettext as _
|
|
|
|
|
|
|
|
from passbook.core.models import Factor
|
|
|
|
|
|
|
|
|
|
|
|
class CaptchaFactor(Factor):
|
|
|
|
"""Captcha Factor instance"""
|
|
|
|
|
|
|
|
public_key = models.TextField()
|
|
|
|
private_key = models.TextField()
|
|
|
|
|
2019-12-31 11:51:16 +00:00
|
|
|
type = "passbook.factors.captcha.factor.CaptchaFactor"
|
|
|
|
form = "passbook.factors.captcha.forms.CaptchaFactorForm"
|
2019-02-24 21:39:09 +00:00
|
|
|
|
|
|
|
def __str__(self):
|
2019-10-07 14:33:48 +00:00
|
|
|
return f"Captcha Factor {self.slug}"
|
2019-02-24 21:39:09 +00:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
|
2019-12-31 11:51:16 +00:00
|
|
|
verbose_name = _("Captcha Factor")
|
|
|
|
verbose_name_plural = _("Captcha Factors")
|