mirror of
https://github.com/bringout/oca-ocb-security.git
synced 2026-04-19 04:52:07 +02:00
Initial commit: Security packages
This commit is contained in:
commit
bb469e4763
1399 changed files with 278378 additions and 0 deletions
|
|
@ -0,0 +1,22 @@
|
|||
# -*- 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='Authorization URL', required=True) # OAuth provider URL to authenticate users
|
||||
scope = fields.Char(default='openid profile email') # OAUth user data desired to access
|
||||
validation_endpoint = fields.Char(string='UserInfo URL', required=True) # OAuth provider URL to get user information
|
||||
data_endpoint = fields.Char()
|
||||
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, string="Login button label", help='Link text in Login Dialog', translate=True)
|
||||
sequence = fields.Integer(default=10)
|
||||
Loading…
Add table
Add a link
Reference in a new issue