Skip to content

Commit

Permalink
merge migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
robinpdev committed May 23, 2024
1 parent 7ee0059 commit 8681700
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Generated by Django 4.2.13 on 2024-05-23 08:23

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('submissions', '0005_submissions_feedback_simple_test_and_more'),
('submissions', '0007_alter_submissions_eval_result'),
]

operations = [
]
2 changes: 1 addition & 1 deletion backend/pigeonhole/apps/submissions/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def create(self, request, *args, **kwargs):
complete_message["submission_id"] = serializer.data["submission_id"]

submission.eval()

return Response(complete_message, status=status.HTTP_201_CREATED)

def update(self, request, *args, **kwargs):
Expand Down

0 comments on commit 8681700

Please sign in to comment.