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
parent
commit
6501df2eee
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      CHANGELOG.md
  2. 4
      apps/api/src/app/portfolio/portfolio.service.ts
  3. 2
      apps/client/src/app/directives/file-drop/file-drop.directive.ts
  4. 1
      apps/client/src/app/pages/features/features-page.component.ts

4
CHANGELOG.md

@ -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

4
apps/api/src/app/portfolio/portfolio.service.ts

@ -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 {

2
apps/client/src/app/directives/file-drop/file-drop.directive.ts

@ -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]'

1
apps/client/src/app/pages/features/features-page.component.ts

@ -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>();

Loading…
Cancel
Save