From 500be8aa2320cf3c032038e7ca399010fc1a0639 Mon Sep 17 00:00:00 2001 From: Lukas Kimpel <lukas.kimpel@mni.thm.de> Date: Tue, 13 Mar 2018 09:59:34 +0100 Subject: [PATCH] Update user Add constructor Re-add user role Update AuthenticationGuard and AuthenticationService accordingly --- src/app/authentication.guard.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/authentication.guard.ts b/src/app/authentication.guard.ts index 4e4f00407..9009340b1 100644 --- a/src/app/authentication.guard.ts +++ b/src/app/authentication.guard.ts @@ -25,7 +25,7 @@ export class AuthenticationGuard implements CanActivate { // Allow access when user is logged in AND // the route doesn't require a specific role OR // the user's role is one of the required roles - if (user && (!requiredRoles || requiredRoles.includes(user.role))) { + if (user && (!requiredRoles || requiredRoles.includes(user.userRole))) { return true; } -- GitLab