Browse Source
Merge pull request #1291 from BenjaHe/patch-1
[9.0] Mail thread is an AbstractModel, not a Model
pull/596/merge
Pedro M. Baeza
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
web_widget_digitized_signature/models/mail_thread.py
|
|
@ -8,7 +8,7 @@ import base64 |
|
|
|
from openerp import _, models, fields |
|
|
|
|
|
|
|
|
|
|
|
class MailThread(models.Model): |
|
|
|
class MailThread(models.AbstractModel): |
|
|
|
_inherit = "mail.thread" |
|
|
|
|
|
|
|
def _track_signature(self, values, field): |
|
|
|