Thomas Kaul
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
5 additions and
4 deletions
-
apps/api/src/app/exchange-rate/exchange-rate.controller.ts
-
apps/api/src/app/symbol/symbol.controller.ts
-
apps/client/src/app/pages/about/about-page-routing.module.ts
|
|
@ -7,10 +7,10 @@ import { |
|
|
|
UseGuards |
|
|
|
} from '@nestjs/common'; |
|
|
|
import { AuthGuard } from '@nestjs/passport'; |
|
|
|
import { parseISO } from 'date-fns'; |
|
|
|
import { StatusCodes, getReasonPhrase } from 'http-status-codes'; |
|
|
|
|
|
|
|
import { ExchangeRateService } from './exchange-rate.service'; |
|
|
|
import { parseISO } from 'date-fns'; |
|
|
|
|
|
|
|
@Controller('exchange-rate') |
|
|
|
export class ExchangeRateController { |
|
|
|
|
|
@ -15,13 +15,13 @@ import { |
|
|
|
import { REQUEST } from '@nestjs/core'; |
|
|
|
import { AuthGuard } from '@nestjs/passport'; |
|
|
|
import { DataSource } from '@prisma/client'; |
|
|
|
import { parseISO } from 'date-fns'; |
|
|
|
import { StatusCodes, getReasonPhrase } from 'http-status-codes'; |
|
|
|
import { isDate, isEmpty } from 'lodash'; |
|
|
|
|
|
|
|
import { LookupItem } from './interfaces/lookup-item.interface'; |
|
|
|
import { SymbolItem } from './interfaces/symbol-item.interface'; |
|
|
|
import { SymbolService } from './symbol.service'; |
|
|
|
import { parseISO } from 'date-fns'; |
|
|
|
|
|
|
|
@Controller('symbol') |
|
|
|
export class SymbolController { |
|
|
|
|
|
@ -1,10 +1,11 @@ |
|
|
|
import * as path from 'path'; |
|
|
|
|
|
|
|
import { NgModule } from '@angular/core'; |
|
|
|
import { RouterModule, Routes } from '@angular/router'; |
|
|
|
import { paths } from '@ghostfolio/client/app-routing.module'; |
|
|
|
import { AuthGuard } from '@ghostfolio/client/core/auth.guard'; |
|
|
|
|
|
|
|
import { AboutPageComponent } from './about-page.component'; |
|
|
|
import { paths } from '@ghostfolio/client/app-routing.module'; |
|
|
|
import * as path from 'path'; |
|
|
|
|
|
|
|
const routes: Routes = [ |
|
|
|
{ |
|
|
|