/ctdl/f/ to get a list of all floors
[citadel.git] / webcit-ng / request.c
index 349bae91563e9a1e87d6018213a0b64fe3793496..f11865bbd3e9209b7f449ded9ce5405fa2f65454 100644 (file)
@@ -151,6 +151,9 @@ void perform_request(struct http_transaction *h) {
        case 'c':               // /ctdl/c/ == misc Citadel server commands
                ctdl_c(h, c);
                break;
+       case 'f':               // /ctdl/f/ == RESTful path to floors
+               ctdl_f(h, c);
+               break;
        case 'r':               // /ctdl/r/ == RESTful path to rooms
                ctdl_r(h, c);
                break;