Commit d7d1e4dc by Pradip

Fix JSP menu in admin home screen

parent ed255156
......@@ -54,6 +54,11 @@ export class AuthGuard implements CanActivate {
this.router.navigate(['access-denied']);
}
}
if (route.routeConfig.path.startsWith('iframe-page') && this.userService.hasPrivilege('TL_AccessAdminPortal')) {
this.router.navigate(['/admin/iframe-page', route.params.url]);
return;
}
// localStorage.setItem('userid', data.UserID);
return true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment