Browse Source
Feature/move tools to sub path (#125)
* Move tools to sub path
* Update changelog
pull/130/head
Thomas
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
13 changed files with
32 additions and
16 deletions
-
CHANGELOG.md
-
apps/client/src/app/app-routing.module.ts
-
apps/client/src/app/pages/tools/analysis/analysis-page-routing.module.ts
-
apps/client/src/app/pages/tools/analysis/analysis-page.component.ts
-
apps/client/src/app/pages/tools/analysis/analysis-page.html
-
apps/client/src/app/pages/tools/analysis/analysis-page.module.ts
-
apps/client/src/app/pages/tools/analysis/analysis-page.scss
-
apps/client/src/app/pages/tools/report/report-page-routing.module.ts
-
apps/client/src/app/pages/tools/report/report-page.component.ts
-
apps/client/src/app/pages/tools/report/report-page.html
-
apps/client/src/app/pages/tools/report/report-page.module.ts
-
apps/client/src/app/pages/tools/report/report-page.scss
-
apps/client/src/app/pages/tools/tools-page.html
|
|
@ -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> |
|
|
|