From 65118e946547261ea00ae7e73878e1592a572ab5 Mon Sep 17 00:00:00 2001 From: Mathis Date: Mon, 7 Oct 2024 12:01:20 +0200 Subject: [PATCH] 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. --- apps/backend/src/app/machines/machines.service.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/backend/src/app/machines/machines.service.ts b/apps/backend/src/app/machines/machines.service.ts index 4854335..cbbc259 100644 --- a/apps/backend/src/app/machines/machines.service.ts +++ b/apps/backend/src/app/machines/machines.service.ts @@ -1,15 +1,15 @@ 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() 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) }