Browse Source
Merge pull request #5723 from abpframework/feat/disable-manage-profile-guard
feat: disable manage profile guard
pull/5724/head
Levent Arman Özak
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
2 deletions
-
npm/ng-packs/packages/account/src/lib/account-routing.module.ts
|
|
|
@ -11,7 +11,6 @@ import { ManageProfileComponent } from './components/manage-profile/manage-profi |
|
|
|
import { RegisterComponent } from './components/register/register.component'; |
|
|
|
import { eAccountComponents } from './enums/components'; |
|
|
|
import { AuthenticationFlowGuard } from './guards/authentication-flow.guard'; |
|
|
|
import { ManageProfileGuard } from './guards/manage-profile.guard'; |
|
|
|
|
|
|
|
const routes: Routes = [ |
|
|
|
{ path: '', pathMatch: 'full', redirectTo: 'login' }, |
|
|
|
@ -44,7 +43,7 @@ const routes: Routes = [ |
|
|
|
{ |
|
|
|
path: 'manage-profile', |
|
|
|
component: ReplaceableRouteContainerComponent, |
|
|
|
canActivate: [AuthGuard, ManageProfileGuard], |
|
|
|
canActivate: [AuthGuard], |
|
|
|
data: { |
|
|
|
replaceableComponent: { |
|
|
|
key: eAccountComponents.ManageProfile, |
|
|
|
|