aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/UserHandler.kt
diff options
context:
space:
mode:
authorMarvin Borner2019-05-04 01:18:45 +0200
committerMarvin Borner2019-05-04 01:18:45 +0200
commit9bf091e3f12e80cf19511d51dc20cbcc9d40855b (patch)
tree93c5a4ef84346c7a056585b194295bbcd2ed1e2d /src/main/kotlin/UserHandler.kt
parenta6fc766d6eb808584c7cebea216f683b53f8e99b (diff)
Added command line arguments
Co-authored-by: LarsVomMars <lars@kroenner.eu>
Diffstat (limited to 'src/main/kotlin/UserHandler.kt')
-rw-r--r--src/main/kotlin/UserHandler.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/kotlin/UserHandler.kt b/src/main/kotlin/UserHandler.kt
index 5f369b1..16a8e9c 100644
--- a/src/main/kotlin/UserHandler.kt
+++ b/src/main/kotlin/UserHandler.kt
@@ -65,7 +65,7 @@ class UserHandler {
* Logs the user out of the system
*/
fun logout(ctx: Context) {
- ctx.clearCookieStore()
+ ctx.clearCookieStore() // TODO: Fix cookie clearing after logout
ctx.redirect("/")
}
@@ -135,7 +135,7 @@ class UserHandler {
if (databaseController.isUserRegistrationValid(username)) {
databaseController.createUser(username, password, "USER")
databaseController.removeRegistrationIndex(username)
- ctx.redirect("/login")
+ ctx.redirect("/user/login")
} else ctx.status(401).result("This user is not authorized to register.")
} else ctx.status(400).result("The passwords don't match!")
} catch (_: Exception) {