mirror of
https://github.com/simple-login/app.git
synced 2025-02-24 15:53:22 +08:00
add id to mailbox repr
This commit is contained in:
parent
3efa96020b
commit
5b9eb8686a
1 changed files with 1 additions and 1 deletions
|
@ -1735,7 +1735,7 @@ class Mailbox(db.Model, ModelMixin):
|
|||
return ret
|
||||
|
||||
def __repr__(self):
|
||||
return f"<Mailbox {self.email}>"
|
||||
return f"<Mailbox {self.id} {self.email}>"
|
||||
|
||||
|
||||
class AccountActivation(db.Model, ModelMixin):
|
||||
|
|
Loading…
Reference in a new issue