Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for eTag #349

Merged
merged 1 commit into from
Oct 28, 2024
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion biocompute/services.py
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,7 @@ def create(self, validated_data):
)
bco_instance.authorized_users.set(authorized_users)

bco_instance.save()
return bco_instance

def validate_bco_object_id(object_id: str, prefix_name: str):
Expand Down Expand Up @@ -532,7 +533,7 @@ def generate_etag(bco_contents: dict) -> str:
- str:
A SHA-256 hash string acting as the etag for the BCO.
"""

bco_contents_copy = copy.deepcopy(bco_contents)

for key in ['object_id', 'spec_version', 'etag']:
Expand Down
4 changes: 3 additions & 1 deletion config/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
HUMAN_READABLE_HOSTNAME = secrets["SERVER"]["HUMAN_READABLE_HOSTNAME"]
PUBLIC_HOSTNAME = secrets["SERVER"]["PUBLIC_HOSTNAME"]
EMAIL_BACKEND = secrets["SERVER"]["EMAIL_BACKEND"]
CORS_ORIGIN_WHITELIST = ["http://localhost:3000"]

except KeyError:
SECRET_KEY="^2uql114+yy0d$xv6+lm8*#1=uxs_oa0zw0bvu^fpi4tc9x0i"
Expand All @@ -37,7 +38,8 @@
DATABASE="db.sqlite3"
EMAIL_BACKEND="django.core.mail.backends.console.EmailBackend"
CORS_ORIGIN_ALLOW_ALL = True
CORS_ORIGIN_WHITELIST = ["*"]
CORS_ORIGIN_WHITELIST = ["http://localhost:3000"]


# Use the REST framework
REST_FRAMEWORK = {
Expand Down
Loading