From 53bdf10f85e53fbe1cf9acc90164ed4bc6b38532 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 7 Apr 2019 13:32:37 +0200 Subject: Added password hashing and verifying --- src/main/kotlin/App.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/kotlin/App.kt') diff --git a/src/main/kotlin/App.kt b/src/main/kotlin/App.kt index 34bdc4b..2869525 100644 --- a/src/main/kotlin/App.kt +++ b/src/main/kotlin/App.kt @@ -57,7 +57,7 @@ fun main() { * Sets up the roles with the database and declares the handling of roles */ fun setupRoles(handler: Handler, ctx: Context, permittedRoles: Set) { - val userRole = databaseController.getUser("melvin")[0].second + val userRole = databaseController.getRole("melvin") when { permittedRoles.contains(userRole) -> handler.handle(ctx) ctx.host()!!.contains("localhost") -> handler.handle(ctx) -- cgit v1.2.3