Revert the code that prevents sysadmins from changing managed EEs

ref #10078
This commit is contained in:
Jeff Bradberry
2021-05-03 10:25:18 -04:00
parent 72a940bef1
commit 39f26fe576
2 changed files with 1 additions and 6 deletions

View File

@@ -685,7 +685,6 @@ class TeamAccessList(ResourceAccessList):
class ExecutionEnvironmentList(ListCreateAPIView):
always_allow_superuser = False
model = models.ExecutionEnvironment
serializer_class = serializers.ExecutionEnvironmentSerializer
swagger_topic = "Execution Environments"
@@ -693,7 +692,6 @@ class ExecutionEnvironmentList(ListCreateAPIView):
class ExecutionEnvironmentDetail(RetrieveUpdateDestroyAPIView):
always_allow_superuser = False
model = models.ExecutionEnvironment
serializer_class = serializers.ExecutionEnvironmentSerializer
swagger_topic = "Execution Environments"