Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Removed UPLOAD_URL env variable and using UPLOAD_FOLDER everywhere #281

Merged
merged 1 commit into from
Apr 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backend/project/endpoints/projects/project_detail.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

API_URL = os.getenv('API_HOST')
RESPONSE_URL = urljoin(API_URL, "projects")
UPLOAD_FOLDER = os.getenv('UPLOAD_URL')
UPLOAD_FOLDER = os.getenv('UPLOAD_FOLDER')


class ProjectDetail(Resource):
Expand Down
Loading