-
Notifications
You must be signed in to change notification settings - Fork 8
Refactor igx-ts side-nav-auth template to standalone components and angular-auth-oidc-client v21 #1554
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor igx-ts side-nav-auth template to standalone components and angular-auth-oidc-client v21 #1554
Changes from 16 commits
eba1717
9b17452
dcec8e5
740b8fe
2658cf5
4582360
455460d
fbdbef8
62e36c6
96e8c95
c4cb896
2252821
2dd06a8
4eb4a78
ac3f5e3
b7697ea
97ac362
67bf7be
e75af5c
4f06d3f
09f09f8
30cf341
7198fc6
8355531
ad5db64
6d18c67
1348032
3947cb4
e504f1f
cf76d0d
dcbf515
24a7db3
658a2bd
6ba1589
842d26e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,13 @@ | ||
| import { Routes } from '@angular/router'; | ||
| import { AuthGuard } from './authentication/auth.guard'; | ||
| import { Profile } from './authentication/profile/profile'; | ||
| import { Redirect } from './authentication/redirect/redirect'; | ||
| import { ExternalAuthProvider } from './authentication/services/external-auth-configs'; | ||
| import { ExternalAuthRedirectUrl } from './authentication/services/external-auth'; | ||
|
|
||
| export const routes: Routes = []; | ||
| export const routes: Routes = [ | ||
| { path: 'profile', component: Profile, canActivate: [AuthGuard] }, | ||
| { path: ExternalAuthRedirectUrl.Google, component: Redirect, data: { provider: ExternalAuthProvider.Google } }, | ||
| { path: ExternalAuthRedirectUrl.Facebook, component: Redirect, data: { provider: ExternalAuthProvider.Facebook } }, | ||
| { path: ExternalAuthRedirectUrl.Microsoft, component: Redirect, data: { provider: ExternalAuthProvider.Microsoft } } | ||
|
||
| ]; | ||
This file was deleted.
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,8 @@ | ||
| export * from './auth.guard'; | ||
| export * from './authentication-routing-module'; | ||
| export * from './authentication-module'; | ||
| export * from './models/login'; | ||
| export * from './models/register-info'; | ||
| export * from './models/user'; | ||
| export * from './provide-authentication'; | ||
| export * from './services/authentication'; | ||
| export * from './services/external-auth'; | ||
| export * from './services/user-store'; |
Uh oh!
There was an error while loading. Please reload this page.