Client - display client secret after creation

This commit is contained in:
Sam
2022-06-07 09:47:36 +02:00
parent 03db8e8cd6
commit 78fe703494
6 changed files with 39 additions and 15 deletions

View File

@ -159,10 +159,16 @@ const routes: Array<RouteRecordRaw> = [
component: UserAppsList,
},
{
path: ':clientId',
path: ':id',
name: 'UserApp',
component: UserApp,
},
{
path: ':id/created',
name: 'CreatedUserApp',
component: UserApp,
props: { afterCreation: true },
},
{
path: 'new',
name: 'AddUserApp',