aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/App.kt
diff options
context:
space:
mode:
authorMarvin Borner2019-04-24 23:59:29 +0200
committerMarvin Borner2019-04-24 23:59:29 +0200
commita3c10541f945068265d93ae83753dda0ac361164 (patch)
tree9cb82a2a3122ae76dc0ac3c9b8ca246181cb426d /src/main/kotlin/App.kt
parent5efb431fe6f0452272fda46b9bc88a69bdcd0ad4 (diff)
Fixed some minor typos
Co-authored-by: LarsVomMars <lars@kroenner.eu>
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))
}
}