Began refactoring CALDAV REPORT flow of control.
[citadel.git] / webcit-ng / server / room_functions.c
index 8b3ea950c67ca4e7a541714d6b948b47e0280108..3ab2f5dc103b5b636225b2f0be469a36e83b7ee2 100644 (file)
@@ -1,6 +1,6 @@
 // Room functions
 //
-// Copyright (c) 1996-2023 by the citadel.org team
+// Copyright (c) 1996-2024 by the citadel.org team
 //
 // This program is open source software.  Use, duplication, or
 // disclosure is subject to the GNU General Public License v3.
@@ -226,12 +226,6 @@ void object_in_room(struct http_transaction *h, struct ctdlsession *c) {
                return;
        }
 
-       if (!strncasecmp(buf, "calendar:", 9)) {        // Client is requesting a calendar range
-               unescape_input(&buf[9]);
-               calendar_msglist(h, c, &buf[9]);
-               return;
-       }
-
        if (!strcasecmp(buf, "info.txt")) {             // Client is requesting the room info banner
                read_room_info_banner(h, c);
                return;