aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/App.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/App.kt')
-rw-r--r--src/main/kotlin/App.kt8
1 files changed, 4 insertions, 4 deletions
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))
}
}