Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
backend
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
INJECT
backend
Commits
bebf4aca
There was an error fetching the commit references. Please try again later.
Commit
bebf4aca
authored
7 months ago
by
Martin Juhás
Browse files
Options
Downloads
Patches
Plain Diff
feat: prevent deleting definition with running exercises
No API changes Closes #209
parent
82942c55
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
exercise_definition/lib/definition_manager.py
+12
-1
12 additions, 1 deletion
exercise_definition/lib/definition_manager.py
with
12 additions
and
1 deletion
exercise_definition/lib/definition_manager.py
+
12
−
1
View file @
bebf4aca
...
...
@@ -2,6 +2,7 @@ import os
from
django.conf
import
settings
from
common_lib.exceptions
import
ExerciseOperationException
from
common_lib.logger
import
logger
from
common_lib.utils
import
get_model
from
exercise.lib.exercise_manager
import
ExerciseManager
...
...
@@ -12,7 +13,17 @@ class DefinitionManager:
@staticmethod
def
delete_definition
(
definition_id
:
int
):
definition
=
get_model
(
Definition
,
id
=
definition_id
)
for
exercise
in
definition
.
exercises
.
all
():
exercises
=
definition
.
exercises
.
all
()
running_exercise_ids
=
[
exercise
.
id
for
exercise
in
exercises
if
exercise
.
running
]
if
len
(
running_exercise_ids
)
!=
0
:
raise
ExerciseOperationException
(
f
"
Cannot delete this definition because
"
f
"
these running exercises depend on it
{
running_exercise_ids
}
"
)
for
exercise
in
exercises
:
ExerciseManager
.
delete_exercise
(
exercise
.
id
)
for
file_info
in
definition
.
files
.
all
():
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment