This commit is contained in:
2025-07-16 16:25:16 +09:00
parent 11af12a806
commit 8135650344
34 changed files with 301 additions and 41 deletions

7
backend/dist/users/users.controller.d.ts vendored Executable file
View File

@@ -0,0 +1,7 @@
import { UsersService } from './users.service';
import { ChangePasswordDto } from './dto/change-password.dto';
export declare class UsersController {
private readonly userService;
constructor(userService: UsersService);
changePassword(req: any, dto: ChangePasswordDto): Promise<void>;
}