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.
20 lines
882 B
20 lines
882 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Creating the microsoft auth provider -->
|
|
<data>
|
|
<record id="provider_microsoft" model="auth.oauth.provider">
|
|
<field name="name">Microsoft</field>
|
|
<field name="auth_endpoint">
|
|
https://login.microsoftonline.com/common/oauth2/v2.0/authorize
|
|
</field>
|
|
<field name="scope">openid email profile</field>
|
|
<field name="validation_endpoint">
|
|
https://login.microsoftonline.com/common/oauth2/v2.0/token
|
|
</field>
|
|
<field name="css_class">fa fa-fw fa-windows</field>
|
|
<field name="body">Log in with Microsoft</field>
|
|
<field name="response_type">code</field>
|
|
<field name="data_endpoint">https://graph.microsoft.com</field>
|
|
</record>
|
|
</data>
|
|
</odoo>
|
|
|