X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit-ng%2Frequest.c;h=f11865bbd3e9209b7f449ded9ce5405fa2f65454;hb=a950795fe131cad9e3007bd1c3c28beec5a87e0f;hp=349bae91563e9a1e87d6018213a0b64fe3793496;hpb=1a6ba52d8841262a040ec5ef35203b41a942642b;p=citadel.git diff --git a/webcit-ng/request.c b/webcit-ng/request.c index 349bae915..f11865bbd 100644 --- a/webcit-ng/request.c +++ b/webcit-ng/request.c @@ -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;