27 lines
775 B
TypeScript
27 lines
775 B
TypeScript
import { Export } from '@ghostfolio/common/interfaces';
|
|
import type { RequestWithUser } from '@ghostfolio/common/types';
|
|
import { Controller, Get, Inject, Query, UseGuards } from '@nestjs/common';
|
|
import { REQUEST } from '@nestjs/core';
|
|
import { AuthGuard } from '@nestjs/passport';
|
|
|
|
import { ExportService } from './export.service';
|
|
|
|
@Controller('export')
|
|
export class ExportController {
|
|
public constructor(
|
|
private readonly exportService: ExportService,
|
|
@Inject(REQUEST) private readonly request: RequestWithUser
|
|
) {}
|
|
|
|
@Get()
|
|
@UseGuards(AuthGuard('jwt'))
|
|
public async export(
|
|
@Query('activityIds') activityIds?: string[]
|
|
): Promise<Export> {
|
|
return this.exportService.export({
|
|
activityIds,
|
|
userId: this.request.user.id
|
|
});
|
|
}
|
|
}
|