21 lines
708 B
Python
21 lines
708 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import models, _
|
|
from odoo.exceptions import AccessError
|
|
|
|
|
|
class APIKeyDescription(models.TransientModel):
|
|
_inherit = 'res.users.apikeys.description'
|
|
|
|
def check_access_make_key(self):
|
|
try:
|
|
return super().check_access_make_key()
|
|
except AccessError:
|
|
if self.env['ir.config_parameter'].sudo().get_param('portal.allow_api_keys'):
|
|
if self.user_has_groups('base.group_portal'):
|
|
return
|
|
else:
|
|
raise AccessError(_("Only internal and portal users can create API keys"))
|
|
raise
|