feat(console): OAuth provider template (#5377)

implements oauth template for console
Co-authored-by: Elio Bischof <elio@zitadel.com>
This commit is contained in:
Max Peintner
2023-03-10 16:28:18 +01:00
committed by GitHub
parent 1ec6c451ca
commit 0c704966a2
20 changed files with 764 additions and 1 deletions

View File

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

View File

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