{"version":3,"file":"src_app_pages_other_other_module_ts.js","mappings":";;;;;;;;;;;;;;;;AACmG;;;;AAO5F,MAAM,SAAS;IAClB,YACY,MAAc,EACd,qBAA4C;QAD5C,WAAM,GAAN,MAAM,CAAQ;QACd,0BAAqB,GAArB,qBAAqB,CAAuB;IACpD,CAAC;IAEL,WAAW,CAAC,KAA6B,EAAE,KAA0B;QACjE,MAAM,WAAW,GAAG,IAAI,CAAC,qBAAqB,CAAC,WAAW,EAAE,CAAC;QAE7D,IAAI,WAAW,EAAE;YACb,OAAO,IAAI,CAAC;SACf;QAED,8DAA8D;QAC9D,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,YAAY,CAAC,EAAE,EAAE,WAAW,EAAE,EAAE,SAAS,EAAE,KAAK,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC;QAChF,OAAO,KAAK,CAAC;IACjB,CAAC;;kEAhBQ,SAAS;0GAAT,SAAS,WAAT,SAAS,mBADI,MAAM;;;;;;;;;;;;;;;;;;;;ACNuB;AACI;AACI;AACqC;;;AAEpG,MAAM,MAAM,GAAW;IACrB,EAAE,IAAI,EAAE,SAAS,EAAG,WAAW,EAAE,CAAC,qEAAS,CAAC,EAAE,YAAY,EAAE,GAAG,EAAE,CAAC,4UAAkC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,aAAa,CAAC,EAAE;IACjI;QACE,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE;YACR;gBACE,IAAI,EAAE,EAAE;gBACR,YAAY,EAAE,GAAG,EAAE,CAAC,6YAA4B,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,UAAU,CAAC;aACzE;YACD;gBACE,IAAI,EAAE,MAAM;gBACZ,YAAY,EAAE,GAAG,EAAE,CAAC,iaAAsC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,cAAc,CAAC;aACvF;SACF;KACF;IACD,6IAA6I;IAC7I,0GAA0G;IAC1G,EAAE,IAAI,EAAE,MAAM,EAAE,YAAY,EAAE,GAAG,EAAE,CAAC,8PAA4B,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,UAAU,CAAC,EAAE;IAC1F,yGAAyG;IACzG,EAAE,IAAI,EAAE,SAAS,EAAE,SAAS,EAAE,wEAAgB,EAAC;IAC/C,EAAE,IAAI,EAAE,sBAAsB,EAAE,SAAS,EAAE,6GAA2B,EAAC;CAExE,CAAC;AAMK,MAAM,kBAAkB;;oFAAlB,kBAAkB;+GAAlB,kBAAkB;mHAHnB,kEAAqB,CAAC,MAAM,CAAC,EAC7B,yDAAY;mIAEX,kBAAkB,oFAFnB,yDAAY;;;;;;;;;;;;;;;;;;AC/BuB;AAEa;;AAcrD,MAAM,WAAW;;sEAAX,WAAW;wGAAX,WAAW;4GAJpB,yDAAY;QACZ,qEAAkB;mIAGT,WAAW,cAJpB,yDAAY;QACZ,qEAAkB","sources":["./src/app/core/guards/auth.guard.ts","./src/app/pages/other/other-routing.module.ts","./src/app/pages/other/other.module.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\nimport { ActivatedRouteSnapshot, CanActivate, Router, RouterStateSnapshot } from '@angular/router';\n\n// service\nimport { AuthenticationService } from '../service/auth.service';\n\n\n@Injectable({ providedIn: 'root' })\nexport class AuthGuard implements CanActivate {\n constructor (\n private router: Router,\n private authenticationService: AuthenticationService\n ) { }\n\n canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot) {\n const currentUser = this.authenticationService.currentUser();\n\n if (currentUser) {\n return true;\n }\n\n // not logged in so redirect to login page with the return url\n this.router.navigate(['auth/login'], { queryParams: { returnUrl: state.url } });\n return false;\n }\n}","import { NgModule } from '@angular/core';\nimport { RouterModule, Routes } from '@angular/router';\nimport { AuthGuard } from 'src/app/core/guards/auth.guard';\nimport { PrivacyComponent } from './privacy/privacy.component';\nimport { TermsAndConditionsComponent } from './terms-and-conditions/terms-and-conditions.component';\n\nconst routes: Routes = [\n { path: 'account', canActivate: [AuthGuard], loadChildren: () => import('./account/account.module').then(m => m.AccountModule) },\n {\n path: 'guides',\n children: [\n {\n path: '',\n loadChildren: () => import('./blog/blog.module').then(m => m.BlogModule)\n },\n {\n path: 'post',\n loadChildren: () => import('./blog-post/blog-post.module').then(m => m.BlogPostModule)\n },\n ]\n },\n // { path: 'portfolio', canActivate: [AuthGuard], loadChildren: () => import('./portfolio/portfolio.module').then(m => m.PortfolioModule) },\n // { path: 'contact', loadChildren: () => import('./contact/contact.module').then(m => m.ContactModule) },\n { path: 'help', loadChildren: () => import('./help/help.module').then(m => m.HelpModule) },\n //{ path: 'pricing', loadChildren: () => import('./pricing/pricing.module').then(m => m.PricingModule) },\n { path: 'privacy', component: PrivacyComponent},\n { path: 'terms-and-conditions', component: TermsAndConditionsComponent}\n \n];\n\n@NgModule({\n imports: [RouterModule.forChild(routes)],\n exports: [RouterModule]\n})\nexport class OtherRoutingModule { }\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { OtherRoutingModule } from './other-routing.module';\nimport { PrivacyComponent } from './privacy/privacy.component';\nimport { TermsAndConditionsComponent } from './terms-and-conditions/terms-and-conditions.component';\n\n\n@NgModule({\n declarations: [\n\n ],\n imports: [\n CommonModule,\n OtherRoutingModule\n ]\n})\nexport class OtherModule { }\n"],"names":[],"sourceRoot":"webpack:///","x_google_ignoreList":[]}