bemade-addons/caldav_sync/data/caldav_sync_data.xml
Marc Durepos a4a360aef1 [FIX] caldav_sync: error in data XML
Remove the numbercall and doall fields from the data to conform
to the new structure of ir.cron model since 18.0.
2024-12-20 09:34:30 -05:00

11 lines
452 B
XML

<odoo noupdate="1">
<record id="ir_cron_caldav_sync" model="ir.cron">
<field name="name">CalDAV Sync</field>
<field name="model_id" ref="model_calendar_event" />
<field name="state">code</field>
<field name="code">model.poll_caldav_server()</field>
<field name="interval_number">10</field>
<field name="interval_type">minutes</field>
<field name="active" eval="True" />
</record>
</odoo>