Browse Source
Add activity mixin to privacy.activity model
- think it could be great to add revision activity or action on this model.
pull/50/head
No known key found for this signature in database
GPG Key ID: 8B8A6900E4831A9B
1 changed files with
1 additions and
1 deletions
-
privacy/models/privacy_activity.py
|
@ -7,7 +7,7 @@ from odoo import api, fields, models |
|
|
class PrivacyActivity(models.Model): |
|
|
class PrivacyActivity(models.Model): |
|
|
_name = "privacy.activity" |
|
|
_name = "privacy.activity" |
|
|
_description = "Data processing activities" |
|
|
_description = "Data processing activities" |
|
|
_inherit = "mail.thread" |
|
|
|
|
|
|
|
|
_inherit = ['mail.thread', 'mail.activity.mixin'] |
|
|
|
|
|
|
|
|
active = fields.Boolean( |
|
|
active = fields.Boolean( |
|
|
default=True, |
|
|
default=True, |
|
|