diff --git a/src/services/brand.service.ts b/src/services/brand.service.ts index 279e82f..95f6802 100644 --- a/src/services/brand.service.ts +++ b/src/services/brand.service.ts @@ -6,7 +6,7 @@ import { v4 as uuidv4 } from 'uuid'; const DbHandler = new MysqlService.Handler('BrandService') const logger = new Logger({name: 'BrandService'}) -//SEC Blob validation +//SEC todo Blob validation /** * Creates a brand in the database with the given data. * @@ -34,6 +34,7 @@ async function createBrand(data: IDbBrand): Promise { return { error: 'failed' }; } +//SEC todo Blob validation /** * Updates a brand in the database. * @@ -98,7 +99,6 @@ async function getBySlugBrand(brandSlug: string): Promise { return brand; } - /** * Retrieves a brand from the database based on the provided brand ID. *