Added archive.org upload

This commit is contained in:
2026-06-04 16:30:29 +01:00
parent 563d9cc96d
commit e1ae5556a9
7 changed files with 254 additions and 16 deletions
+5 -6
View File
@@ -41,12 +41,6 @@ Routes::add_web("GET", "/merge/{id}", ["DocumentController", "merge"], ["Auth",
Routes::add_web("GET", "/explode/{id}", ["DocumentController", "separate"], ["Auth", "can_moderate"]);
Routes::add_web("GET", "/test", function($_request) {
print("<pre>");
print_r($_request);
exit(0);
});
Routes::add_web("GET", "/privacy", function() { return blade("privacy"); });
@@ -108,3 +102,8 @@ Routes::add_web("GET", "/system/{id}/add/{doc}", ["SystemController", "system_ad
Routes::add_web("GET", "/system/{id}/del/{doc}", ["SystemController", "system_del_doc"], ["Auth", "logged_in"]);
Routes::add_web("GET", "/extract/revision/{id}", ["RevisionController", "split_revision"], ["Auth", "can_moderate"]);
ArchiveController::routes();