Browse Source

Task/remove deprecated order endpoints (#6928)

* Remove deprecated order endpoints

* Update changelog
pull/6937/head
Thomas Kaul 1 day ago
committed by GitHub
parent
commit
f4af9edeb5
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 6
      apps/api/src/app/activities/activities.controller.ts

1
CHANGELOG.md

@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed ### Changed
- Removed the deprecated attributes (`assetClass`, `countries`, `currency`, `dataSource`, `name`, `sectors`, `symbol` and `url`) from the holdings of the public portfolio endpoint response - Removed the deprecated attributes (`assetClass`, `countries`, `currency`, `dataSource`, `name`, `sectors`, `symbol` and `url`) from the holdings of the public portfolio endpoint response
- Removed the deprecated `api/v1/order` endpoints
- Upgraded `@keyv/redis` from version `4.4.0` to `5.1.6` - Upgraded `@keyv/redis` from version `4.4.0` to `5.1.6`
### Fixed ### Fixed

6
apps/api/src/app/activities/activities.controller.ts

@ -43,11 +43,7 @@ import { StatusCodes, getReasonPhrase } from 'http-status-codes';
import { ActivitiesService } from './activities.service'; import { ActivitiesService } from './activities.service';
@Controller([ @Controller('activities')
'activities',
/** @deprecated */
'order'
])
export class ActivitiesController { export class ActivitiesController {
public constructor( public constructor(
private readonly activitiesService: ActivitiesService, private readonly activitiesService: ActivitiesService,

Loading…
Cancel
Save