summaryrefslogtreecommitdiff
path: root/addons/auth_oauth/views/res_users_views.xml
blob: 11a12e18fc1a10c15973acd758b93716a7ca681f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8"?>
<odoo>
        <record id="view_users_form" model="ir.ui.view">
            <field name="name">res.users.form.inherit</field>
            <field name="model">res.users</field>
            <field name="type">form</field>
            <field name="inherit_id" ref="base.view_users_form"/>
            <field name="arch" type="xml">
                <xpath expr="//page[@name='access_rights']" position="after">
                    <page string="Oauth" name="oauth">
                        <group>
                            <field name="oauth_provider_id"/>
                            <field name="oauth_uid"/>
                            <field name="oauth_access_token"/>
                        </group>
                    </page>
                </xpath>
            </field>
        </record>
</odoo>