diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/auth_oauth/models/auth_oauth.py | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/auth_oauth/models/auth_oauth.py')
| -rw-r--r-- | addons/auth_oauth/models/auth_oauth.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/addons/auth_oauth/models/auth_oauth.py b/addons/auth_oauth/models/auth_oauth.py new file mode 100644 index 00000000..bdecce9b --- /dev/null +++ b/addons/auth_oauth/models/auth_oauth.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import fields, models + + +class AuthOAuthProvider(models.Model): + """Class defining the configuration values of an OAuth2 provider""" + + _name = 'auth.oauth.provider' + _description = 'OAuth2 provider' + _order = 'sequence, name' + + name = fields.Char(string='Provider name', required=True) # Name of the OAuth2 entity, Google, etc + client_id = fields.Char(string='Client ID') # Our identifier + auth_endpoint = fields.Char(string='Authentication URL', required=True) # OAuth provider URL to authenticate users + scope = fields.Char() # OAUth user data desired to access + validation_endpoint = fields.Char(string='Validation URL', required=True) # OAuth provider URL to validate tokens + data_endpoint = fields.Char(string='Data URL') + enabled = fields.Boolean(string='Allowed') + css_class = fields.Char(string='CSS class', default='fa fa-fw fa-sign-in text-primary') + body = fields.Char(required=True, help='Link text in Login Dialog', translate=True) + sequence = fields.Integer(default=10) |
