remove guard (#450)

This commit is contained in:
Max Peintner 2020-07-13 14:14:02 +02:00 committed by GitHub
parent b628baeb1a
commit 547d55a2c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,10 +31,7 @@ const routes: Routes = [
{
path: 'users',
loadChildren: () => import('./pages/users/users.module').then(m => m.UsersModule),
canActivate: [AuthGuard, RoleGuard],
data: {
roles: ['user.read'],
},
canActivate: [AuthGuard],
},
{
path: 'iam',