You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In colab-superarchives-plugin/src/colab_superarchives/models.py there is:
class EmailAddressValidation(models.Model):
address = models.EmailField(unique=True)
user = models.ForeignKey(settings.AUTH_USER_MODEL, null=True,
related_name='emails_not_validated')
validation_key = models.CharField(max_length=32, null=True,
default=get_validation_key)
created = models.DateTimeField(auto_now_add=True)
@lucasmoura and I started to work in this issue, branch move_emails_models_to_core in colab core. We made a pull request and we are waiting for some review (colab/colab#87). The continuous integration are failing because of a taggit migration and we need to investigate how to fix it (in my devel environment everything works well). @chaws could you finish this issue? =)
In colab-superarchives-plugin/src/colab_superarchives/models.py there is:
class EmailAddressValidation(models.Model):
address = models.EmailField(unique=True)
user = models.ForeignKey(settings.AUTH_USER_MODEL, null=True,
related_name='emails_not_validated')
validation_key = models.CharField(max_length=32, null=True,
default=get_validation_key)
created = models.DateTimeField(auto_now_add=True)
and others related to email. Move those to Colab core.
The text was updated successfully, but these errors were encountered: