From 5cbb9d1ffe6ad4b7d89c0b189a7821d1005bbdda Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 16 May 2019 18:07:53 +0200 Subject: Fixed many issues with directory uploading and sharing Co-authored-by: LarsVomMars --- src/main/kotlin/App.kt | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/main/kotlin/App.kt') diff --git a/src/main/kotlin/App.kt b/src/main/kotlin/App.kt index 3607702..12b70db 100644 --- a/src/main/kotlin/App.kt +++ b/src/main/kotlin/App.kt @@ -146,6 +146,11 @@ fun main(args: Array) { */ post("/upload/*", fileController::upload, roles(Roles.USER)) + /** + * Indexes every file of the user into the database + */ + get("/index", fileController::indexAll, roles(Roles.USER)) + /** * Deletes file */ -- cgit v1.2.3