Add Fux-Lichtspiele calendar
All checks were successful
docker-image / docker (push) Successful in 8m35s

This commit is contained in:
Stefan Bethke 2025-09-06 13:59:55 +02:00
commit b969b7b3c3

View file

@ -31,6 +31,10 @@ def setup_animations(config, animator: BubaAnimator, webqueue: WebQueue):
url="https://events.ccc.de/calendar/events.ics", url="https://events.ccc.de/calendar/events.ics",
title="CCC Events", range=datetime.timedelta(weeks=8)) title="CCC Events", range=datetime.timedelta(weeks=8))
fux_lichtspiele_events = IcalEvents(animator.buba,
url="https://cloud.hamburg.ccc.de/remote.php/dav/public-calendars/wdyaFEMeJiAK2jGc?export",
title="Fux-Lichtspiele", range=datetime.timedelta(weeks=8))
ccchh_spaceapi = Spaceapi(animator.buba, "https://spaceapi.hamburg.ccc.de", "CCCHH") ccchh_spaceapi = Spaceapi(animator.buba, "https://spaceapi.hamburg.ccc.de", "CCCHH")
ca = None ca = None
@ -40,13 +44,14 @@ def setup_animations(config, animator: BubaAnimator, webqueue: WebQueue):
else: else:
LOG.warning("Club Assistant token not set, not activating animation") LOG.warning("Club Assistant token not set, not activating animation")
# animator.add(cs) animator.add(cs)
animator.add(bt) animator.add(bt)
animator.add(snake) animator.add(snake)
animator.add(dbf_ahst) animator.add(dbf_ahst)
animator.add(dbf_ahs) animator.add(dbf_ahs)
animator.add(ccchh_events) animator.add(ccchh_events)
animator.add(ccc_events) animator.add(ccc_events)
animator.add(fux_lichtspiele_events)
animator.add(ccchh_spaceapi) animator.add(ccchh_spaceapi)
if ca is not None: if ca is not None:
animator.add(ca) animator.add(ca)