Add status event attribute

pull/92/head
AndCycle 2020-06-08 21:22:11 +08:00 zatwierdzone przez Brian Hartvigsen
rodzic c151e7c1fe
commit 7446b03269
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 61B372B8BA3D83E1
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -50,6 +50,7 @@ class Event:
self.attendee = None
self.organizer = None
self.categories = None
self.status = None
def time_left(self, time=None):
"""
@ -227,6 +228,9 @@ def create_event(component, tz=UTC):
encoded_categories.append(encode(category))
event.categories = encoded_categories
if component.get("status"):
event.status = component.get("status")
return event