Browse Source
Task/reuse blog path of public routes in sitemap service (#5608)
* Reuse blog path of public routes
pull/5620/head
Thomas Kaul
3 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
apps/api/src/app/endpoints/sitemap/sitemap.service.ts
|
@ -124,7 +124,7 @@ export class SitemapService { |
|
|
languageCode, |
|
|
languageCode, |
|
|
rootUrl, |
|
|
rootUrl, |
|
|
route: { |
|
|
route: { |
|
|
routerLink: ['blog', ...routerLink], |
|
|
routerLink: [publicRoutes.blog.path, ...routerLink], |
|
|
path: undefined |
|
|
path: undefined |
|
|
} |
|
|
} |
|
|
}); |
|
|
}); |
|
|