| 90 | |
| 91 | |
| 92 | class EncryptedPasswordProfile(DateMixin): |
| 93 | id = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False) |
| 94 | user = models.ForeignKey( |
| 95 | LessPassUser, |
| 96 | on_delete=models.CASCADE, |
| 97 | related_name="encrypted_password_profiles", |
| 98 | ) |
| 99 | password_profile = models.TextField() |
| 100 | |
| 101 | def __str__(self): |
| 102 | return str(self.id) |
nothing calls this directly
no outgoing calls
no test coverage detected