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.
13 lines
603 B
13 lines
603 B
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<!--Adding OAuth provider details-->
|
|
<odoo>
|
|
<record id="auth_oauth_provider_github" model="auth.oauth.provider">
|
|
<field name="name">GitHub</field>
|
|
<field name="auth_endpoint">https://github.com/login/oauth/authorize</field>
|
|
<field name="scope">user:email</field>
|
|
<field name="enabled">True</field>
|
|
<field name="validation_endpoint">https://github.com/login/oauth/access_token</field>
|
|
<field name="css_class">fa fa-fw fa-github</field>
|
|
<field name="body">Log in with GitHub</field>
|
|
</record>
|
|
</odoo>
|
|
|