From 648bdeb46c964ec70d576d4314395898172976a9 Mon Sep 17 00:00:00 2001 From: Muhammad Rayhan Ardiansyah Date: Tue, 17 Mar 2026 14:39:18 +0700 Subject: [PATCH] fixing --- src/controllers/pharmacy/pharmacy_info.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/controllers/pharmacy/pharmacy_info.ts b/src/controllers/pharmacy/pharmacy_info.ts index c769c28..ba1d8fd 100644 --- a/src/controllers/pharmacy/pharmacy_info.ts +++ b/src/controllers/pharmacy/pharmacy_info.ts @@ -492,7 +492,7 @@ export class PharmacyInfoController { path: { type: "string", description: 'File path', - default: 'uploads/hospital-logo' + default: 'uploads/pharmacy-info' }, application: { type: "string", @@ -539,7 +539,7 @@ export class PharmacyInfoController { // Normalize path param.path = param.path[param.path.length - 1] !== '/' ? param.path + '/' : param.path; - if (param.path == undefined || param.path == null) param.path = 'uploads/pharmacy-logo/'; + if (param.path == undefined || param.path == null) param.path = 'uploads/pharmacy-info/'; // Generate unique filename const ext = file.name.split('.');