Feature/move tools to sub path (#125)

* Move tools to sub path

* Update changelog
pull/130/head
Thomas 3 years ago committed by GitHub
parent 6623bc0113
commit 7c22969de1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased
### Changed
- Moved the tools to a sub path (`/tools`)
## 1.9.0 - 01.06.2021
### Added

@ -28,13 +28,6 @@ const routes: Routes = [
loadChildren: () =>
import('./pages/admin/admin-page.module').then((m) => m.AdminPageModule)
},
{
path: 'analysis',
loadChildren: () =>
import('./pages/analysis/analysis-page.module').then(
(m) => m.AnalysisPageModule
)
},
{
path: 'auth',
loadChildren: () =>
@ -52,13 +45,6 @@ const routes: Routes = [
(m) => m.PricingPageModule
)
},
{
path: 'report',
loadChildren: () =>
import('./pages/report/report-page.module').then(
(m) => m.ReportPageModule
)
},
{
path: 'resources',
loadChildren: () =>
@ -76,6 +62,20 @@ const routes: Routes = [
loadChildren: () =>
import('./pages/tools/tools-page.module').then((m) => m.ToolsPageModule)
},
{
path: 'tools/analysis',
loadChildren: () =>
import('./pages/tools/analysis/analysis-page.module').then(
(m) => m.AnalysisPageModule
)
},
{
path: 'tools/report',
loadChildren: () =>
import('./pages/tools/report/report-page.module').then(
(m) => m.ReportPageModule
)
},
{
path: 'transactions',
loadChildren: () =>

@ -9,7 +9,12 @@
portfolio.
</p>
<p class="text-right">
<button color="primary" i18n mat-button [routerLink]="['/analysis']">
<button
color="primary"
i18n
mat-button
[routerLink]="['/tools', 'analysis']"
>
Open Analysis →
</button>
</p>
@ -23,7 +28,12 @@
risks in your portfolio.
</p>
<p class="text-right">
<button color="primary" i18n mat-button [routerLink]="['/report']">
<button
color="primary"
i18n
mat-button
[routerLink]="['/tools', 'report']"
>
Open X-ray →
</button>
</p>

Loading…
Cancel
Save