You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
623 B
14 lines
623 B
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Inherit res.users form view to include mail_channel_ids (used for chat favourites in systray) -->
|
|
<record id="view_users_form" model="ir.ui.view">
|
|
<field name="name">res.users.view.form.inherit.chat.favourites.in.systray</field>
|
|
<field name="model">res.users</field>
|
|
<field name="inherit_id" ref="base.view_users_form" />
|
|
<field name="arch" type="xml">
|
|
<field name="action_id" position="after">
|
|
<field name="mail_channel_ids" invisible="1" />
|
|
</field>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|