Add logs
All checks were successful
Demo - Build & Deploy to Scaleway / build-and-push-images-lecoffre (push) Successful in 1m50s
Demo - Build & Deploy to Scaleway / deploy-back-lecoffre (push) Successful in 3s
Demo - Build & Deploy to Scaleway / deploy-cron-lecoffre (push) Successful in 2s

This commit is contained in:
Omar Oughriss 2025-07-28 14:09:42 +02:00
parent b601428bdb
commit 9c6ad427b3

View File

@ -20,6 +20,8 @@ export default class OfficeFoldersService extends BaseService {
* @throws {Error} If folders cannot be get
*/
public async get(query: Prisma.OfficeFoldersFindManyArgs) {
console.log("query", query);
console.error("query", query);
return this.officeFoldersRepository.findMany(query);
}