summaryrefslogtreecommitdiff
path: root/addons/auth_oauth/views/res_config_settings_views.xml
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
commit3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch)
treea44932296ef4a9b71d5f010906253d8c53727726 /addons/auth_oauth/views/res_config_settings_views.xml
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/auth_oauth/views/res_config_settings_views.xml')
-rw-r--r--addons/auth_oauth/views/res_config_settings_views.xml40
1 files changed, 40 insertions, 0 deletions
diff --git a/addons/auth_oauth/views/res_config_settings_views.xml b/addons/auth_oauth/views/res_config_settings_views.xml
new file mode 100644
index 00000000..7bb93d21
--- /dev/null
+++ b/addons/auth_oauth/views/res_config_settings_views.xml
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="utf-8"?>
+<odoo>
+ <record id="res_config_settings_view_form" model="ir.ui.view">
+ <field name="name">res.config.settings.view.form.inherit.auth.oauth</field>
+ <field name="model">res.config.settings</field>
+ <field name="inherit_id" ref="base_setup.res_config_settings_view_form"/>
+ <field name="arch" type="xml">
+ <div id="msg_module_auth_oauth" position="replace">
+ <div class="content-group" attrs="{'invisible': [('module_auth_oauth','=',False)]}">
+ <div class="mt8">
+ <button type="action" name="%(auth_oauth.action_oauth_provider)d" string="OAuth Providers" icon="fa-arrow-right" class="btn-link"/>
+ </div>
+ </div>
+ </div>
+ <div id="module_auth_oauth" position="after">
+ <div class="col-12 col-lg-6 o_setting_box"
+ id="signin_google_setting"
+ attrs="{'invisible': [('module_auth_oauth','=',False)]}">
+ <div class="o_setting_left_pane">
+ <field name="auth_oauth_google_enabled"/>
+ </div>
+ <div class="o_setting_right_pane">
+ <label string="Google Authentication" for="auth_oauth_google_enabled"/>
+ <a href="https://www.odoo.com/documentation/14.0/applications/general/auth/google.html" title="Documentation" class="o_doc_link" target="_blank"></a>
+ <div class="text-muted">
+ Allow users to sign in with their Google account
+ </div>
+ <div class="content-group" attrs="{'invisible': [('auth_oauth_google_enabled','=',False)]}">
+ <div class="row mt16">
+ <label for="auth_oauth_google_client_id" string="Client ID:" class="col-lg-3 o_light_label"/>
+ <field name="auth_oauth_google_client_id" placeholder="e.g. 1234-xyz.apps.googleusercontent.com"/>
+ </div>
+ <a href="https://www.odoo.com/documentation/14.0/applications/general/auth/google.html" target="_blank"><i class="fa fa-fw fa-arrow-right"/>Tutorial</a>
+ </div>
+ </div>
+ </div>
+ </div>
+ </field>
+ </record>
+</odoo>