mirror of
https://github.com/Kozea/Radicale.git
synced 2025-08-01 18:18:31 +00:00
Allow requests with no maching items (ie. requests at "/")
This commit is contained in:
parent
45c1647a92
commit
e9e811d375
1 changed files with 2 additions and 2 deletions
|
@ -293,8 +293,8 @@ class Application(object):
|
|||
self.collect_allowed_items(items, user)
|
||||
|
||||
if read_allowed_items or write_allowed_items or \
|
||||
function == self.options:
|
||||
# Collections found, or OPTIONS request (always allowed)
|
||||
function == self.options or not items:
|
||||
# Collections found, or OPTIONS request, or no items at all
|
||||
status, headers, answer = function(
|
||||
environ, read_allowed_items, write_allowed_items, content,
|
||||
user)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue