From 8ea2afe0fe106db741d5be3e1f4be0ac90e23440 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Tue, 24 Feb 2026 06:45:35 +0100 Subject: [PATCH] sharing: add hook for POST --- radicale/app/post.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/radicale/app/post.py b/radicale/app/post.py index df944499..0cac0b74 100644 --- a/radicale/app/post.py +++ b/radicale/app/post.py @@ -30,4 +30,6 @@ class ApplicationPartPost(ApplicationBase): """Manage POST request.""" if path == "/.web" or path.startswith("/.web/"): return self._web.post(environ, base_prefix, path, user) + elif path == "/.sharing" or path.startswith("/.sharing/"): + return self._sharing.post(environ, base_prefix, path, user) return httputils.METHOD_NOT_ALLOWED