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.
18 lines
738 B
18 lines
738 B
<?xml version="1.0"?>
|
|
<odoo>
|
|
<!--Defines a view for the form of the model 'auth.oauth.provider'. It
|
|
inherits the view and adds a new field 'client_secret' after the existing
|
|
field 'client_id'.-->
|
|
<record id="view_oauth_provider_form" model="ir.ui.view">
|
|
<field name="name">
|
|
auth.oauth.provider.view.form.inherit.hr.linkedin.recruitment
|
|
</field>
|
|
<field name="model">auth.oauth.provider</field>
|
|
<field name="inherit_id" ref="auth_oauth.view_oauth_provider_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='client_id']" position="after">
|
|
<field name="client_secret"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|