feat
This commit is contained in:
@@ -1,12 +1,10 @@
|
||||
import { Controller, Get, HttpCode, HttpStatus, Query, UseGuards } from '@nestjs/common';
|
||||
import { Controller, Get, HttpCode, HttpStatus, Query } from '@nestjs/common';
|
||||
import { ApiOperation, ApiTags } from '@nestjs/swagger';
|
||||
import { JwtAuthGuard } from '../common/guards/jwt-auth.guard';
|
||||
import { GetRecommendationsQueryDto, GetRecommendationsResponseDto } from './dto/recommendation.dto';
|
||||
import { RecommendationsService } from './recommendations.service';
|
||||
|
||||
@ApiTags('recommendations')
|
||||
@Controller('recommendations')
|
||||
@UseGuards(JwtAuthGuard)
|
||||
export class RecommendationsController {
|
||||
constructor(private readonly recommendationsService: RecommendationsService) { }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user