Browse Source

feat: enable redirecting to mvc on manage-profile route

pull/6083/head
bnymncoskuner 6 years ago
parent
commit
c783fcbfbe
  1. 3
      npm/ng-packs/packages/account/src/lib/account-routing.module.ts

3
npm/ng-packs/packages/account/src/lib/account-routing.module.ts

@ -11,6 +11,7 @@ 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' },
@ -43,7 +44,7 @@ const routes: Routes = [
{
path: 'manage-profile',
component: ReplaceableRouteContainerComponent,
canActivate: [AuthGuard],
canActivate: [AuthGuard, ManageProfileGuard],
data: {
replaceableComponent: {
key: eAccountComponents.ManageProfile,

Loading…
Cancel
Save