Added upload path starter

This commit is contained in:
CHIEFSOFT\ameye
2025-12-28 14:08:35 -05:00
parent 26f77cf79c
commit 7f1fd7a156
2 changed files with 1 additions and 13 deletions
-13
View File
@@ -18,8 +18,6 @@ class FileUploadService(BaseService):
@staticmethod
def process_file_upload(upload_type: str, file, member_uid):
file_uid = "I GOT HERE "
try:
@@ -30,17 +28,6 @@ class FileUploadService(BaseService):
final_folder = f"W{member_data.id:010d}"
# personal_data = {
# "firstname": member_data.firstname,
# "lastname": member_data.lastname,
# "account_name": member_data.account_name,
# "email": member_data.email,
# "phone": member_data.phone,
# "full_address": member_data.full_address,
# "picture": 'https://media.mermsemr.com/media/show/merms-profile',
# "country": member_data.country,
# }
save_path = FileUploadService.UPLOAD_FOLDER + "/WEBSITE"
if not os.path.isdir(save_path):
os.makedirs(save_path)
+1
View File
@@ -0,0 +1 @@
Explain the fle upload design here