Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ghostfolio/commit/40836b745b118b4a9b38533a9e38adf70914fda3
You should set ROOT_URL correctly, otherwise the web may not work correctly.
7 changed files with
13 additions and
6 deletions
@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Improved the validation for `currency` in various endpoints
- Harmonized the setting of a default locale in various components
- Set the parser to `angular` in the `prettier` options
@ -1,6 +1,7 @@
import { Transform , TransformFnParams } from 'class-transformer' ;
import {
IsBoolean ,
IsISO4217CurrencyCode ,
IsNumber ,
IsOptional ,
IsString ,
@ -19,7 +20,7 @@ export class CreateAccountDto {
)
comment? : string ;
@Is String ( )
@Is ISO4217CurrencyCode ( )
currency : string ;
@IsOptional ( )
@ -1,6 +1,7 @@
import { Transform , TransformFnParams } from 'class-transformer' ;
import {
IsBoolean ,
IsISO4217CurrencyCode ,
IsNumber ,
IsOptional ,
IsString ,
@ -19,7 +20,7 @@ export class UpdateAccountDto {
)
comment? : string ;
@Is String ( )
@Is ISO4217CurrencyCode ( )
currency : string ;
@IsString ( )
@ -2,6 +2,7 @@ import { AssetClass, AssetSubClass, Prisma } from '@prisma/client';
import {
IsArray ,
IsEnum ,
IsISO4217CurrencyCode ,
IsObject ,
IsOptional ,
IsString
@ -24,7 +25,7 @@ export class UpdateAssetProfileDto {
@IsOptional ( )
countries? : Prisma.InputJsonArray ;
@Is String ( )
@Is ISO4217CurrencyCode ( )
@IsOptional ( )
currency? : string ;
@ -10,6 +10,7 @@ import {
IsArray ,
IsBoolean ,
IsEnum ,
IsISO4217CurrencyCode ,
IsISO8601 ,
IsNumber ,
IsOptional ,
@ -38,7 +39,7 @@ export class CreateOrderDto {
)
comment? : string ;
@Is String ( )
@Is ISO4217CurrencyCode ( )
currency : string ;
@IsOptional ( )
@ -9,6 +9,7 @@ import { Transform, TransformFnParams } from 'class-transformer';
import {
IsArray ,
IsEnum ,
IsISO4217CurrencyCode ,
IsISO8601 ,
IsNumber ,
IsOptional ,
@ -37,7 +38,7 @@ export class UpdateOrderDto {
)
comment? : string ;
@Is String ( )
@Is ISO4217CurrencyCode ( )
currency : string ;
@IsString ( )
@ -7,6 +7,7 @@ import type {
import {
IsArray ,
IsBoolean ,
IsISO4217CurrencyCode ,
IsISO8601 ,
IsIn ,
IsNumber ,
@ -19,8 +20,8 @@ export class UpdateUserSettingDto {
@IsOptional ( )
annualInterestRate? : number ;
@IsISO4217CurrencyCode ( )
@IsOptional ( )
@IsString ( )
baseCurrency? : string ;
@IsString ( )