mirror of https://github.com/OCA/social.git
[IMP] adjustments
1. Use forecreate=false in mail_restrict_follower_selection/data/ir_config_parameter.xml so that a deleted configuration is not recreated by a module update 2. Change the default domain to something less agressive 3. Add an example restriction restricting following a specific modelpull/1037/head
parent
fce21406c7
commit
9deb56e07a
|
@ -78,6 +78,9 @@ Contributors
|
|||
* Holger Brunn <hbrunn@therp.nl>
|
||||
* Nguyen Tan Phuc <phuc.nt@komit-consulting.com>
|
||||
* Enric Tobella <etobella@creublanca.es>
|
||||
* `Quartile <https://www.quartile.co>`__:
|
||||
|
||||
* Aung Ko Ko Lin
|
||||
|
||||
Maintainers
|
||||
~~~~~~~~~~~
|
||||
|
|
|
@ -12,5 +12,6 @@
|
|||
"summary": "Define a domain from which followers can be selected",
|
||||
"depends": ["mail"],
|
||||
"data": ["data/ir_config_parameter.xml", "data/ir_actions.xml"],
|
||||
"demo": ["demo/ir_config_parameter_demo.xml"],
|
||||
"installable": True,
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<odoo noupdate="1">
|
||||
<record id="parameter_domain" model="ir.config_parameter">
|
||||
<record forcecreate="False" id="parameter_domain" model="ir.config_parameter">
|
||||
<field name="key">mail_restrict_follower_selection.domain</field>
|
||||
<field name="value">[('category_id.name', '=', 'Employees')]</field>
|
||||
</record>
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" ?>
|
||||
<odoo>
|
||||
<record id="parameter_res_partner_domain" model="ir.config_parameter">
|
||||
<field name="key">mail_restrict_follower_selection.domain.res.partner</field>
|
||||
<field name="value">[(1, '=', 1)]</field>
|
||||
</record>
|
||||
</odoo>
|
|
@ -1,3 +1,6 @@
|
|||
* Holger Brunn <hbrunn@therp.nl>
|
||||
* Nguyen Tan Phuc <phuc.nt@komit-consulting.com>
|
||||
* Enric Tobella <etobella@creublanca.es>
|
||||
* `Quartile <https://www.quartile.co>`__:
|
||||
|
||||
* Aung Ko Ko Lin
|
||||
|
|
|
@ -422,6 +422,10 @@ If you spotted it first, help us smashing it by providing a detailed and welcome
|
|||
<li>Holger Brunn <<a class="reference external" href="mailto:hbrunn@therp.nl">hbrunn@therp.nl</a>></li>
|
||||
<li>Nguyen Tan Phuc <<a class="reference external" href="mailto:phuc.nt@komit-consulting.com">phuc.nt@komit-consulting.com</a>></li>
|
||||
<li>Enric Tobella <<a class="reference external" href="mailto:etobella@creublanca.es">etobella@creublanca.es</a>></li>
|
||||
<li><a class="reference external" href="https://www.quartile.co">Quartile</a>:<ul>
|
||||
<li>Aung Ko Ko Lin</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="maintainers">
|
||||
|
|
|
@ -13,6 +13,10 @@ class TestMailRestrictFollowerSelection(TransactionCase):
|
|||
self.category_employees = self.env["res.partner.category"].create(
|
||||
{"name": "Employees"}
|
||||
)
|
||||
self.param = self.env.ref(
|
||||
"mail_restrict_follower_selection.parameter_res_partner_domain"
|
||||
)
|
||||
self.param.update({"value": "[('category_id.name', '=', 'Employees')]"})
|
||||
|
||||
self.partner = self.env["res.partner"].create(
|
||||
{
|
||||
|
@ -70,12 +74,7 @@ class TestMailRestrictFollowerSelection(TransactionCase):
|
|||
test_restrict_follower=True
|
||||
)._message_add_suggested_recipient({self.partner.id: []}, partner=self.partner)
|
||||
self.assertEqual(res[self.partner.id][0][0], self.partner.id)
|
||||
self.env["ir.config_parameter"].create(
|
||||
{
|
||||
"key": "mail_restrict_follower_selection.domain.res.partner",
|
||||
"value": "[('category_id.name', '!=', 'Employees')]",
|
||||
}
|
||||
)
|
||||
|
||||
new_res = self.partner.with_context(
|
||||
test_restrict_follower=True
|
||||
)._message_add_suggested_recipient({self.partner.id: []})
|
||||
|
|
Loading…
Reference in New Issue