corregido test en la api

This commit is contained in:
2025-06-17 00:11:35 -04:00
parent d4e5d50e45
commit a9a5dad0dd

View File

@@ -7,6 +7,7 @@ import { SingUpUserDto } from '@/features/auth/dto/signUp-user.dto';
import { import {
Body, Body,
Controller, Controller,
Get,
HttpCode, HttpCode,
Patch, Patch,
Post, Post,
@@ -58,7 +59,7 @@ export class AuthController {
@Public() @Public()
@HttpCode(200) @HttpCode(200)
@Post('test') @Get('test')
async test() { async test() {
return 'aplication test success'; return 'aplication test success';
} }