Skip to content

Commit

Permalink
remove verification required mixin form some algorithm views
Browse files Browse the repository at this point in the history
  • Loading branch information
ammar257ammar committed Jan 8, 2025
1 parent 08d14b0 commit 274756e
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions app/grandchallenge/algorithms/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@
class AlgorithmCreate(
LoginRequiredMixin,
PermissionRequiredMixin,
VerificationRequiredMixin,
UserFormKwargsMixin,
CreateView,
):
Expand Down Expand Up @@ -249,7 +248,6 @@ class AlgorithmUpdate(
LoginRequiredMixin,
UserFormKwargsMixin,
ObjectPermissionRequiredMixin,
VerificationRequiredMixin,
UpdateView,
):
model = Algorithm
Expand Down Expand Up @@ -277,7 +275,6 @@ def get_form_kwargs(self):
class AlgorithmDescriptionUpdate(
LoginRequiredMixin,
ObjectPermissionRequiredMixin,
VerificationRequiredMixin,
UpdateView,
):
model = Algorithm
Expand Down

0 comments on commit 274756e

Please sign in to comment.