diff options
author | Marvin Borner | 2019-04-21 18:34:48 +0200 |
---|---|---|
committer | Marvin Borner | 2019-04-21 18:34:48 +0200 |
commit | a5f26def08e100bf74e90d09298ad81e9224e249 (patch) | |
tree | 3dd897b3962c25204a7826d9de2c81e17a76ee5f /src/main/kotlin/App.kt | |
parent | 191e1976d93aaf0143f84fda86a4805d3b7cede8 (diff) |
Added download button
Co-authored-by: LarsVomMars <lars@kroenner.eu>
Diffstat (limited to 'src/main/kotlin/App.kt')
-rw-r--r-- | src/main/kotlin/App.kt | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/main/kotlin/App.kt b/src/main/kotlin/App.kt index ebdb560..8fb289c 100644 --- a/src/main/kotlin/App.kt +++ b/src/main/kotlin/App.kt @@ -45,7 +45,6 @@ fun main() { /** * Main page - * TODO: Create landing page */ get( "/", @@ -97,13 +96,11 @@ fun main() { /** * Renders the file list view - * TODO: Fix possible security issue with "../" */ get("/files/*", fileController::crawl, roles(Roles.USER)) /** * Receives and saves multipart media data - * TODO: Fix possible security issue with "../" */ post("/upload/*", fileController::upload, roles(Roles.USER)) |