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
586 B

  1. <?xml version="1.0"?>
  2. <odoo>
  3. <record model="ir.ui.view" id="company_form_view">
  4. <field name="name">Add name and email attributes to ldap view</field>
  5. <field name="model">base.config.settings</field>
  6. <field name="inherit_id" ref="auth_ldap.view_general_configuration_form_inherit_auth_ldap"/>
  7. <field name="arch" type="xml">
  8. <xpath expr="//field[@name='ldap_filter']" position="after">
  9. <field name="name_attribute"/>
  10. <field name="mail_attribute"/>
  11. </xpath>
  12. </field>
  13. </record>
  14. </odoo>