From b360551e4d9b91843b06e96eea0b080c65f6d68b Mon Sep 17 00:00:00 2001 From: Didier 'OdyX' Raboud Date: Fri, 6 Sep 2024 16:36:54 +0200 Subject: [PATCH] [IMP] auth_oidc: add oauth.provider.group_line _description attribute --- auth_oidc/models/auth_oauth_provider.py | 1 + 1 file changed, 1 insertion(+) diff --git a/auth_oidc/models/auth_oauth_provider.py b/auth_oidc/models/auth_oauth_provider.py index 15a5ff7f5e..d2405af20f 100644 --- a/auth_oidc/models/auth_oauth_provider.py +++ b/auth_oidc/models/auth_oauth_provider.py @@ -114,6 +114,7 @@ def _decode_id_token(self, access_token, id_token, kid): class AuthOauthProviderGroupLine(models.Model): _name = "auth.oauth.provider.group_line" + _description = "OAuth mapping between an Odoo group and an expression" provider_id = fields.Many2one("auth.oauth.provider", required=True) group_id = fields.Many2one("res.groups", required=True)