Added commands to view a room's file directory and to
[citadel.git] / webcit / webcit.c
index 6e11ccfed3d3bf818bfd18ddec3a4ed0f468b714..2d71873103ec54593a602ed73f64c083fd8f0f9c 100644 (file)
@@ -1656,6 +1656,10 @@ void session_loop(struct httprequest *req)
                wDumpContent(1);
        } else if (!strcasecmp(action, "updatenote")) {
                updatenote();
+       } else if (!strcasecmp(action, "display_room_directory")) {
+               display_room_directory();
+       } else if (!strcasecmp(action, "download_file")) {
+               download_file(index[1]);
        }
 
        /** When all else fais, display the main menu. */