1
0
Fork 1
mirror of https://github.com/coddingtonbear/django-mailbox.git synced 2026-07-09 22:38:19 +02:00

Hide original body from email message display in admin; bumping version number.

This commit is contained in:
Adam Coddington 2013-06-11 22:32:13 -07:00
parent c94e2c62a3
commit 156b6fb418
3 changed files with 11 additions and 1 deletions

View file

@ -365,6 +365,10 @@ class Message(models.Model):
)
)
@property
def text(self):
return self.get_text_body()
def get_text_body(self):
def get_body_from_message(message):
body = ''