🐛 show short event_id in description
This commit is contained in:
parent
4a37e61265
commit
3e5e53a929
|
|
@ -152,14 +152,13 @@ class Event(models.Model):
|
|||
Create ics string
|
||||
:return:
|
||||
"""
|
||||
uuid = self.uuid.__str__()
|
||||
c = ICS_Calendar()
|
||||
e = ICS_Event()
|
||||
e.uid = uuid
|
||||
e.uid = self.uuid.__str__()
|
||||
e.name = self.name
|
||||
e.begin = self.start
|
||||
e.end = self.end
|
||||
e.description = f"Meeting-ID: {uuid}"
|
||||
e.description = f"Meeting-ID: {self.id}"
|
||||
c.events.add(e)
|
||||
return c.serialize()
|
||||
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
1.0.3
|
||||
1.0.4
|
||||
Loading…
Reference in New Issue