14 lines
664 B
XML
14 lines
664 B
XML
|
|
<odoo>
|
||
|
|
<record id="view_oauth_provider_form_inherit" model="ir.ui.view">
|
||
|
|
<field name="name">auth.oauth.provider.form.inherit</field>
|
||
|
|
<field name="model">auth.oauth.provider</field>
|
||
|
|
<field name="inherit_id" ref="auth_oauth.view_oauth_provider_form"/>
|
||
|
|
<field name="arch" type="xml">
|
||
|
|
<!-- Only System Administrators should see/edit these fields -->
|
||
|
|
<xpath expr="//field[@name='client_id']" position="after">
|
||
|
|
<field name="company_id" groups="base.group_system"/>
|
||
|
|
<field name="website_id" groups="base.group_system"/>
|
||
|
|
</xpath>
|
||
|
|
</field>
|
||
|
|
</record>
|
||
|
|
</odoo>
|