Browse Source
Merge branch 'main' into feature/add-emergency-fund-setup-to-static-portfolio-analysis-rules
pull/2400/head
Thomas Kaul
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
8 additions and
3 deletions
-
CHANGELOG.md
-
apps/api/src/app/portfolio/portfolio.service.ts
-
apps/client/src/app/directives/file-drop/file-drop.directive.ts
-
apps/client/src/app/pages/features/features-page.component.ts
|
@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
|
- Added a new static portfolio analysis rule: Emergency fund setup |
|
|
- Added a new static portfolio analysis rule: Emergency fund setup |
|
|
|
|
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
|
|
|
|
- Fixed a link on the features page |
|
|
|
|
|
|
|
|
## 2.6.0 - 2023-09-26 |
|
|
## 2.6.0 - 2023-09-26 |
|
|
|
|
|
|
|
|
### Added |
|
|
### Added |
|
|
|
@ -51,13 +51,13 @@ import { Inject, Injectable } from '@nestjs/common'; |
|
|
import { REQUEST } from '@nestjs/core'; |
|
|
import { REQUEST } from '@nestjs/core'; |
|
|
import { |
|
|
import { |
|
|
Account, |
|
|
Account, |
|
|
|
|
|
Type as ActivityType, |
|
|
AssetClass, |
|
|
AssetClass, |
|
|
DataSource, |
|
|
DataSource, |
|
|
Order, |
|
|
Order, |
|
|
Platform, |
|
|
Platform, |
|
|
Prisma, |
|
|
Prisma, |
|
|
Tag, |
|
|
Tag |
|
|
Type as ActivityType |
|
|
|
|
|
} from '@prisma/client'; |
|
|
} from '@prisma/client'; |
|
|
import Big from 'big.js'; |
|
|
import Big from 'big.js'; |
|
|
import { |
|
|
import { |
|
|
|
@ -1,4 +1,4 @@ |
|
|
import { Directive, HostListener, Output, EventEmitter } from '@angular/core'; |
|
|
import { Directive, EventEmitter, HostListener, Output } from '@angular/core'; |
|
|
|
|
|
|
|
|
@Directive({ |
|
|
@Directive({ |
|
|
selector: '[gfFileDrop]' |
|
|
selector: '[gfFileDrop]' |
|
|
|
@ -15,6 +15,7 @@ export class FeaturesPageComponent implements OnDestroy { |
|
|
public hasPermissionForSubscription: boolean; |
|
|
public hasPermissionForSubscription: boolean; |
|
|
public info: InfoItem; |
|
|
public info: InfoItem; |
|
|
public routerLinkRegister = ['/' + $localize`register`]; |
|
|
public routerLinkRegister = ['/' + $localize`register`]; |
|
|
|
|
|
public routerLinkResources = ['/' + $localize`resources`]; |
|
|
public user: User; |
|
|
public user: User; |
|
|
|
|
|
|
|
|
private unsubscribeSubject = new Subject<void>(); |
|
|
private unsubscribeSubject = new Subject<void>(); |
|
|