Skip to content
Snippets Groups Projects
Commit 9da2e604 authored by Ruben Young On's avatar Ruben Young On
Browse files

Moved check to see if exam is finalized

parent 9151d76d
No related branches found
No related tags found
1 merge request!12Fix relation between MultipleChoiceOption and FeedbackOption
Pipeline #17729 passed
This commit is part of merge request !12. Comments created here will be created in the context of that merge request.
......@@ -125,6 +125,9 @@ class Feedback(Resource):
problem = fb.problem
if problem.id != problem_id:
return dict(status=409, message="Feedback does not match the problem."), 409
if problem.exam.finalized:
return dict(status=401, message='Cannot delete feedback option'
+ ' attached to a multiple choice option in a finalized exam.'), 401
db.session.delete(fb)
......@@ -141,10 +144,6 @@ class Feedback(Resource):
# Delete mc_options associated with this feedback option
if fb.mc_option:
if fb.problem.exam.finalized:
return dict(status=401, message='Cannot delete feedback option'
+ ' attached to a multiple choice option in a finalized exam.'), 401
db.session.delete(fb.mc_option)
db.session.commit()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment