feat: implement Database Manager module with encryption, CRUD operations, and migration management

This commit is contained in:
lborv
2025-09-27 18:06:50 +03:00
parent 2f848137ed
commit 0d5b2830ed
24 changed files with 541 additions and 303 deletions

View File

@ -15,7 +15,7 @@ export class ProjectService {
return this.projectRepository.save(project);
}
findByToken(token: string) {
return this.projectRepository.findOne({ where: { token } });
findById(id: string) {
return this.projectRepository.findOne({ where: { id: id } });
}
}