From c056361f5449ae6a4d94b71b0efd2f67493502f7 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 22 Apr 2019 22:07:34 +0200 Subject: Added viewing of files in shared directories 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 8fb289c..39275ec 100644 --- a/src/main/kotlin/App.kt +++ b/src/main/kotlin/App.kt @@ -118,6 +118,11 @@ fun main() { * Shows the shared file */ get("/shared", fileController::renderShared, roles(Roles.GUEST)) + + /** + * Shares file in directory + */ + post("/shared", fileController::handleSharedFile, roles(Roles.GUEST)) } } -- cgit v1.2.3