mirror of
https://github.com/odoo/runbot.git
synced 2025-03-27 21:35:45 +07:00

Might eventually extract / generalise, but for now it's simpler to just do it in runbot_merge's post_load, that way there's no setup change (just a small bit of configuration), and it's only enabled on the instances runbot_merge is installed on. fixes #97, closes #103
15 lines
323 B
Python
15 lines
323 B
Python
{
|
|
'name': 'merge bot',
|
|
'depends': ['contacts', 'website'],
|
|
'data': [
|
|
'security/security.xml',
|
|
'security/ir.model.access.csv',
|
|
|
|
'data/merge_cron.xml',
|
|
'views/res_partner.xml',
|
|
'views/mergebot.xml',
|
|
'views/templates.xml',
|
|
],
|
|
'post_load': 'enable_sentry',
|
|
}
|