mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-21 03:32:05 +02:00
- 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
15 lines
369 B
Python
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',
|
|
}
|