add folder operation and use createQueryRunner

This commit is contained in:
IO420
2025-09-16 22:37:25 -06:00
parent 7024bfdeac
commit 3e4b3b1b18
15 changed files with 150 additions and 76 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ import { JwtService } from '@nestjs/jwt';
export class UserService {
constructor(
@InjectRepository(User)
private userRepository: Repository<User>,
private readonly userRepository: Repository<User>,
private jwtService: JwtService
) { }