Browse Source
Bugfix/add missing type of access id in get public portfolio endpoint (#5690)
* Add missing type
pull/5723/head
Thomas Kaul
6 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
apps/api/src/app/endpoints/public/public.controller.ts
|
|
@ -40,7 +40,7 @@ export class PublicController { |
|
|
|
@UseInterceptors(RedactValuesInResponseInterceptor) |
|
|
|
@UseInterceptors(TransformDataSourceInResponseInterceptor) |
|
|
|
public async getPublicPortfolio( |
|
|
|
@Param('accessId') accessId |
|
|
|
@Param('accessId') accessId: string |
|
|
|
): Promise<PublicPortfolioResponse> { |
|
|
|
const access = await this.accessService.access({ id: accessId }); |
|
|
|
|
|
|
|