All files / apps/properties-service/src/properties properties.controller.ts

100% Statements 14/14
100% Branches 24/24
100% Functions 4/4
100% Lines 12/12

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 372x                 2x   2x 2x       2x 4x     2x 1x       2x     1x       2x 1x      
import {
  Body,
  Controller,
  Get,
  Param,
  ParseUUIDPipe,
  Post,
  Query,
} from '@nestjs/common';
import { CreatePropertyDto } from './dto/create-property.dto';
import { PaginatedResult } from './dto/paginated-result';
import { QueryPropertiesDto } from './dto/query-properties.dto';
import { PropertiesService } from './properties.service';
import { Property } from './property.entity';
 
@Controller('properties')
export class PropertiesController {
  constructor(private readonly propertiesService: PropertiesService) {}
 
  @Post()
  create(@Body() dto: CreatePropertyDto): Promise<Property> {
    return this.propertiesService.create(dto);
  }
 
  @Get()
  findAll(
    @Query() query: QueryPropertiesDto,
  ): Promise<PaginatedResult<Property>> {
    return this.propertiesService.findAll(query);
  }
 
  @Get(':id')
  findOne(@Param('id', ParseUUIDPipe) id: string): Promise<Property> {
    return this.propertiesService.findOne(id);
  }
}