Fix indentation and quote style in MachinesService

Corrected inconsistent use of single and double quotes and adjusted indentation for enhanced readability and code style consistency. No functional changes were made in this commit.
This commit is contained in:
Mathis H (Avnyr) 2024-10-07 12:01:20 +02:00
parent 66ca040807
commit 65118e9465
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

View File

@ -1,15 +1,15 @@
import { Injectable } from "@nestjs/common"; import { Injectable } from "@nestjs/common";
import { DbService } from 'apps/backend/src/app/db/db.service'; import { DbService } from "apps/backend/src/app/db/db.service";
@Injectable() @Injectable()
export class MachinesService { export class MachinesService {
constructor(private readonly database: DbService) {} constructor(private readonly database: DbService) {}
//TODO a method to fetch machines in the database by a specific search with limit, offset and a search field (can be blank) //TODO a method to fetch machines in the database by a specific search with limit, offset and a search field (can be blank)
//TODO The method to create a machine //TODO The method to create a machine
//TODO a method to delete a machine and delete the associated FilesTypeForMachine row //TODO a method to delete a machine and delete the associated FilesTypeForMachine row
//TODO a method to get the files of a group in the database by a specific search with limit, offset and a search field (can be blank) //TODO a method to get the files of a group in the database by a specific search with limit, offset and a search field (can be blank)
} }