feat(console): GitHub identity provider template (#5403)

Github idp template for console
This commit is contained in:
Max Peintner
2023-03-13 11:01:09 +01:00
committed by GitHub
parent eb4f7c5d7c
commit f55877eb70
23 changed files with 657 additions and 23 deletions

View File

@@ -83,6 +83,19 @@ const routes: Routes = [
},
],
},
{
path: 'github',
children: [
{
path: 'create',
loadChildren: () => import('src/app/modules/providers/provider-github/provider-github.module'),
},
{
path: ':id',
loadChildren: () => import('src/app/modules/providers/provider-github/provider-github.module'),
},
],
},
],
},
];

View File

@@ -71,6 +71,19 @@ const routes: Routes = [
},
],
},
{
path: 'github',
children: [
{
path: 'create',
loadChildren: () => import('src/app/modules/providers/provider-github/provider-github.module'),
},
{
path: ':id',
loadChildren: () => import('src/app/modules/providers/provider-github/provider-github.module'),
},
],
},
],
},
{