MCPcopy Create free account
hub / github.com/lesspass/lesspass / EncryptedPasswordProfile

Class EncryptedPasswordProfile

containers/backend/api/models.py:92–102  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

90
91
92class 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)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected