diff options
author | Marvin Borner | 2019-04-07 14:14:30 +0200 |
---|---|---|
committer | Marvin Borner | 2019-04-07 14:14:30 +0200 |
commit | 92807cfb7249eff1d96b70aa33a46c9eb6c0e733 (patch) | |
tree | 033386b8c1e08a2b4720eb2cf2198fc20adece4f /src/main/kotlin/App.kt | |
parent | 0b1fc338c6e17930665112ca72416d836a0339fe (diff) |
Added upload page as a rocker template
Diffstat (limited to 'src/main/kotlin/App.kt')
-rw-r--r-- | src/main/kotlin/App.kt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/kotlin/App.kt b/src/main/kotlin/App.kt index 2869525..44f60bb 100644 --- a/src/main/kotlin/App.kt +++ b/src/main/kotlin/App.kt @@ -41,9 +41,9 @@ fun main() { get("/files/*", { ctx -> crawlFiles(ctx) }, roles(Roles.ADMIN)) /** - * Redirects upload to corresponding html file + * Renders the upload rocker template */ - get("/upload", { ctx -> ctx.redirect("/views/upload.html") }, roles(Roles.USER)) + get("/upload", { ctx -> ctx.render("upload.rocker.html") }, roles(Roles.USER)) /** * Receives and saves multipart media data @@ -102,7 +102,7 @@ fun upload(ctx: Context) { ctx.uploadedFiles("files").forEach { (contentType, content, name, extension) -> if (ctx.queryParam("dir") !== null) { FileUtil.streamToFile(content, "files/${ctx.queryParam("dir")}/$name") - ctx.redirect("/views/upload.html") + ctx.redirect("/views/upload.rocker.html") } else throw BadRequestResponse("Error: Please enter a filename.") } |