aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/App.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/App.kt')
-rw-r--r--src/main/kotlin/App.kt2
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)