From a3c10541f945068265d93ae83753dda0ac361164 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 24 Apr 2019 23:59:29 +0200 Subject: Fixed some minor typos Co-authored-by: LarsVomMars --- src/main/kotlin/App.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/main/kotlin/App.kt') diff --git a/src/main/kotlin/App.kt b/src/main/kotlin/App.kt index 39275ec..49cc553 100644 --- a/src/main/kotlin/App.kt +++ b/src/main/kotlin/App.kt @@ -115,14 +115,14 @@ fun main() { post("/share/*", fileController::share, roles(Roles.USER)) /** - * Shows the shared file + * Shares file in directory */ - get("/shared", fileController::renderShared, roles(Roles.GUEST)) + post("/share", fileController::handleSharedFile, roles(Roles.GUEST)) /** - * Shares file in directory + * Shows the shared file */ - post("/shared", fileController::handleSharedFile, roles(Roles.GUEST)) + get("/shared", fileController::renderShared, roles(Roles.GUEST)) } } -- cgit v1.2.3