mirror of https://github.com/OCA/social.git
[IMP] mass_mailing_custom_unsubscribe: chatter permissions
Otherwise only admins can put notespull/1420/head
parent
40b8cd1bd5
commit
f9dc8ad7de
|
@ -6,7 +6,7 @@
|
||||||
"name": "Customizable unsubscription process on mass mailing emails",
|
"name": "Customizable unsubscription process on mass mailing emails",
|
||||||
"summary": "Know and track (un)subscription reasons, GDPR compliant",
|
"summary": "Know and track (un)subscription reasons, GDPR compliant",
|
||||||
"category": "Marketing",
|
"category": "Marketing",
|
||||||
"version": "13.0.1.0.1",
|
"version": "13.0.1.0.2",
|
||||||
"depends": ["mass_mailing"],
|
"depends": ["mass_mailing"],
|
||||||
"data": [
|
"data": [
|
||||||
"security/ir.model.access.csv",
|
"security/ir.model.access.csv",
|
||||||
|
|
|
@ -12,6 +12,7 @@ class MailUnsubscription(models.Model):
|
||||||
_name = "mail.unsubscription"
|
_name = "mail.unsubscription"
|
||||||
_description = "Mail unsubscription"
|
_description = "Mail unsubscription"
|
||||||
_inherit = "mail.thread"
|
_inherit = "mail.thread"
|
||||||
|
_mail_post_access = "read"
|
||||||
_rec_name = "date"
|
_rec_name = "date"
|
||||||
_order = "date DESC"
|
_order = "date DESC"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue