Skip to content

Commit

Permalink
fixup! fixup! [ADD] allow adding calendar links to time off calendar,…
Browse files Browse the repository at this point in the history
… default icals
  • Loading branch information
hbrunn committed Nov 20, 2023
1 parent d9b765d commit a40515d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions verdigado_attendance/data/base_ical.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<field name="expression_dtstart">(record.request_unit_half or record.request_unit_hours) and record.date_from or record.date_from.date()</field>
<field name="expression_dtend">(record.request_unit_half or record.request_unit_hours) and record.date_to or (record.date_to.date() + timedelta(days=1))</field>
<!-- prettier-ignore-end -->
<field name="expression_summary">record.name</field>
<field name="expression_summary">record.name or ''</field>
<field name="auto" eval="True" />
<field name="show_on_holiday_calendar" eval="True" />
</record>
Expand All @@ -25,7 +25,7 @@
<field name="expression_dtstart">(record.request_unit_half or record.request_unit_hours) and record.date_from or record.date_from.date()</field>
<field name="expression_dtend">(record.request_unit_half or record.request_unit_hours) and record.date_to or (record.date_to.date() + timedelta(days=1))</field>
<!-- prettier-ignore-end -->
<field name="expression_summary">record.name</field>
<field name="expression_summary">record.name or ''</field>
<field name="auto" eval="True" />
<field name="show_on_holiday_calendar" eval="True" />
</record>
Expand Down

0 comments on commit a40515d

Please sign in to comment.