publish to github or gitlab pages
This commit is contained in:
@@ -25,5 +25,15 @@ export const routes: Routes = [
|
||||
loadComponent: () => import('./llm-workspace/llm-workspace.component').then(m => m.LlmWorkspaceComponent),
|
||||
canActivate: [AuthGuard],
|
||||
},
|
||||
{
|
||||
path: 'llm/:siteId/settings',
|
||||
loadComponent: () => import('./llm-workspace/settings/settings.component').then(m => m.SettingsComponent),
|
||||
canActivate: [AuthGuard],
|
||||
},
|
||||
{
|
||||
path: 'llm/:siteId/git',
|
||||
loadComponent: () => import('./llm-workspace/git-settings/git-settings.component').then(m => m.GitSettingsComponent),
|
||||
canActivate: [AuthGuard],
|
||||
},
|
||||
{ path: '**', redirectTo: '/dashboard' },
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user