mirror of https://github.com/OCA/social.git
28 lines
1.2 KiB
XML
28 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
<record id="res_config_settings_view_form" model="ir.ui.view">
|
|
<field name="name">res.config.settings.view.form.inherit.mail</field>
|
|
<field name="model">res.config.settings</field>
|
|
<field name="inherit_id" ref="mail.res_config_settings_view_form" />
|
|
<field name="arch" type="xml">
|
|
<div id="emails" position="inside">
|
|
<div class="col-xs-12 col-md-6 o_setting_box">
|
|
<div class="o_setting_left_pane">
|
|
<field name="disable_notify_mail_drop_target" />
|
|
</div>
|
|
<div class="o_setting_right_pane">
|
|
<label
|
|
string="Disable Mail Drag&Drop Notification"
|
|
for="disable_notify_mail_drop_target"
|
|
/>
|
|
<div class="text-muted">
|
|
When a user drops an email into an existing thread
|
|
the followers of the thread will not be notified.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</field>
|
|
</record>
|
|
</odoo>
|