]> code.citadel.org Git - citadel.git/blobdiff - webcit-ng/server/messages.c
dav_move_or_copy_message() skeleton
[citadel.git] / webcit-ng / server / messages.c
index a45337b897910b19d364f85118ac1ebb4a73ddec..7250fe87c1ba9614a3133c23ae4dd3eafda47045 100644 (file)
@@ -46,6 +46,12 @@ void dav_delete_message(struct http_transaction *h, struct ctdlsession *c, long
 }
 
 
+// DAV move or copy an object in a room.
+void dav_move_or_copy_message(struct http_transaction *h, struct ctdlsession *c, long msgnum, int move_or_copy) {
+       do_404(h);
+}
+
+
 // GET method directly on a message in a room
 void dav_get_message(struct http_transaction *h, struct ctdlsession *c, long msgnum) {
        char buf[1024];