Browse Source
Merge pull request #23125 from abpframework/auto-merge/rel-9-2/3797
Merge branch rel-9.3 with rel-9.2
pull/23126/head
maliming
8 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
2 additions and
2 deletions
-
npm/ng-packs/packages/schematics/src/commands/create-lib/files-package-standalone/__libraryName@kebab__/config/src/providers/route.provider.ts.template
-
npm/ng-packs/packages/schematics/src/commands/create-lib/files-package/__libraryName@kebab__/config/src/providers/route.provider.ts.template
|
|
|
@ -12,7 +12,7 @@ export function configureRoutes() { |
|
|
|
const routes = inject(RoutesService); |
|
|
|
routes.add([ |
|
|
|
{ |
|
|
|
path: '/<%= kebab(libraryName) %>', |
|
|
|
path: undefined, |
|
|
|
name: e<%= pascal(libraryName) %>RouteNames.<%= pascal(libraryName) %>, |
|
|
|
iconClass: 'fas fa-book', |
|
|
|
layout: eLayoutType.application, |
|
|
|
|
|
|
|
@ -15,7 +15,7 @@ export function configureRoutes(routesService: RoutesService) { |
|
|
|
return () => { |
|
|
|
routesService.add([ |
|
|
|
{ |
|
|
|
path: '/<%= kebab(libraryName) %>', |
|
|
|
path: undefined, |
|
|
|
name: e<%= pascal(libraryName) %>RouteNames.<%= pascal(libraryName) %>, |
|
|
|
iconClass: 'fas fa-book', |
|
|
|
layout: eLayoutType.application, |
|
|
|
|