izaac/jobposting/helpers.py
Jakub K c94b92562e
All checks were successful
continuous-integration/drone Build is passing
obraz osobno
2023-12-27 22:19:35 +01:00

7 lines
198 B
Python

import os
from uuid import uuid4
def rename_file(instance, filename):
ext = filename.split(".")[-1]
new_filename = f"{uuid4()}.{ext}"
return os.path.join('company_logos/', new_filename)