aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin
diff options
context:
space:
mode:
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 "../"
*/