oca-ocb-core/odoo-bringout-oca-ocb-rpc/rpc/__manifest__.py
Ernad Husremovic 3037cab43e add rpc addon and fix 19.0 compatibility issues
- add missing rpc addon (auto_install, required by server_wide_modules)
- add __init__.py -> init.py symlink for odoo package importability
- re-export image_process from odoo.tools (needed by web_editor)
- add backward-compatible slug/unslug functions in http_routing

🤖 assisted by claude
2026-03-09 15:19:28 +01:00

15 lines
369 B
Python

{
'name': 'RPC endpoints',
'description': """\
Standard Odoo RPC endpoints to models
=====================================
This module provides the /xmlrpc and /jsonrpc endpoints used to
programmatically access models.
""",
'depends': ["base"],
'category': 'Extra Tools',
'auto_install': True,
'author': 'Odoo S.A.',
'license': 'LGPL-3',
}