added Login

This commit is contained in:
2025-09-10 16:39:44 -04:00
parent d73c0cf4e7
commit d9afbcd1e9
4 changed files with 54 additions and 31 deletions
-5
View File
@@ -7,11 +7,6 @@ import { UpdateUserDto } from './dto/update-user.dto';
export class UserController {
constructor(private readonly userService: UserService) {}
@Get()
findAll() {
return this.userService.findAll();
}
@Post()
Login(@Body() user: CreateUserDto) {
return this.userService.Login(user);