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.
46 lines
2.3 KiB
46 lines
2.3 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Inherited company form view for adding zoom api settings-->
|
|
<record id="view_company_form" model="ir.ui.view">
|
|
<field name="name">
|
|
res.company.view.form.inherit.odoo.zoom.meet.integration
|
|
</field>
|
|
<field name="model">res.company</field>
|
|
<field name="inherit_id" ref="base.view_company_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//notebook/page[1]" position="after">
|
|
<page string="Zoom Meet">
|
|
<separator name="configuration"
|
|
string="Zoom Meet Configuration"/>
|
|
<notebook>
|
|
<page name="credentials" string="Credentials">
|
|
<group>
|
|
<field name="zoom_client"/>
|
|
<field name="zoom_client_secret"/>
|
|
<field name="zoom_redirect_uri"/>
|
|
</group>
|
|
<group>
|
|
<button string="Authenticate" type="object"
|
|
name="action_zoom_meet_company_authenticate"
|
|
class="oe_highlight"
|
|
icon="fa-plug"/>
|
|
<button string="Refresh Token" type="object"
|
|
name="action_zoom_meet_company_refresh_token"
|
|
class="oe_highlight"
|
|
icon="fa-refresh"/>
|
|
</group>
|
|
</page>
|
|
<page name="authentication" string="Authentication">
|
|
<group>
|
|
<field name="zoom_company_access_token"/>
|
|
<field name="zoom_company_access_token_expiry"/>
|
|
<field name="zoom_company_refresh_token"/>
|
|
<field name="zoom_company_authorization_code"/>
|
|
</group>
|
|
</page>
|
|
</notebook>
|
|
</page>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|