diff options
author | Marvin Borner | 2019-04-07 13:32:37 +0200 |
---|---|---|
committer | Marvin Borner | 2019-04-07 13:32:37 +0200 |
commit | 53bdf10f85e53fbe1cf9acc90164ed4bc6b38532 (patch) | |
tree | 954930eaff4b1f7b678b0531d5690983579fda43 /src/main/kotlin/App.kt | |
parent | ea6d0b7176fb2133f170421666f410dfce20ca31 (diff) |
Added password hashing and verifying
Diffstat (limited to 'src/main/kotlin/App.kt')
-rw-r--r-- | src/main/kotlin/App.kt | 2 |
1 files changed, 1 insertions, 1 deletions
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<Role>) { - 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) |