aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin
diff options
context:
space:
mode:
authorMarvin Borner2019-04-09 19:03:42 +0200
committerMarvin Borner2019-04-09 19:03:42 +0200
commitc3b7b013af860e49dda45b5a0795fa98de99a9e8 (patch)
tree49cf012d5ab6f396503d10b4342bfe7755bfe64f /src/main/kotlin
parente954f618c3ecf554aec1455cb53af80c69a213d4 (diff)
Added index template
Diffstat (limited to 'src/main/kotlin')
-rw-r--r--src/main/kotlin/App.kt6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/kotlin/App.kt b/src/main/kotlin/App.kt
index e856ade..c8d2bf8 100644
--- a/src/main/kotlin/App.kt
+++ b/src/main/kotlin/App.kt
@@ -36,6 +36,12 @@ fun main() {
app.routes {
/**
+ * Main page
+ * TODO: Create landing page
+ */
+ get("/", { ctx -> ctx.render("index.rocker.html") }, roles(Roles.GUEST))
+
+ /**
* Sends a json object of filenames in [fileHome]s
* TODO: Fix possible security issue with "../"
*/