mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 13:47:37 +03:00
log if destination directory is not a collection
This commit is contained in:
parent
62e6aad2d2
commit
e07a248451
1 changed files with 2 additions and 0 deletions
|
@ -176,6 +176,8 @@ class ApplicationPartPut(ApplicationBase):
|
||||||
|
|
||||||
if write_whole_collection:
|
if write_whole_collection:
|
||||||
if ("w" if tag else "W") not in access.permissions:
|
if ("w" if tag else "W") not in access.permissions:
|
||||||
|
if not parent_item.tag:
|
||||||
|
logger.warning("Not a collection (check .Radicale.props): %r", parent_item.path)
|
||||||
return httputils.NOT_ALLOWED
|
return httputils.NOT_ALLOWED
|
||||||
if not self._permit_overwrite_collection:
|
if not self._permit_overwrite_collection:
|
||||||
if ("O") not in access.permissions:
|
if ("O") not in access.permissions:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue