-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathres_users.xml
23 lines (22 loc) · 856 Bytes
/
res_users.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="view_users_form" model="ir.ui.view">
<field name="name">res.users.form</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[@string='Access Rights']" position="after">
<page string="Oauth">
<group>
<field name="oauth_provider"/>
<field name="oauth_uid"/>
<field name="oauth_access_token"/>
</group>
</page>
</xpath>
</field>
</record>
</data>
</openerp>