mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-05 14:17:35 +03:00
Allow PUT requests to change the whole calendar (see #250)
This commit is contained in:
parent
6e715912f6
commit
abb1de883b
1 changed files with 4 additions and 1 deletions
|
@ -448,9 +448,12 @@ def put(path, ical_request, collection):
|
|||
if name in (item.name for item in collection.items):
|
||||
# PUT is modifying an existing item
|
||||
collection.replace(name, ical_request)
|
||||
else:
|
||||
elif name:
|
||||
# PUT is adding a new item
|
||||
collection.append(name, ical_request)
|
||||
else:
|
||||
# PUT is replacing the whole collection
|
||||
collection.save(ical_request)
|
||||
|
||||
|
||||
def report(path, xml_request, collection):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue