diff --git a/awx/api/views/__init__.py b/awx/api/views/__init__.py index 47a0e0a3a7..0bfa00d18c 100644 --- a/awx/api/views/__init__.py +++ b/awx/api/views/__init__.py @@ -690,12 +690,14 @@ class ExecutionEnvironmentList(ListCreateAPIView): model = models.ExecutionEnvironment serializer_class = serializers.ExecutionEnvironmentSerializer + swagger_topic = "Execution Environments" class ExecutionEnvironmentDetail(RetrieveUpdateDestroyAPIView): model = models.ExecutionEnvironment serializer_class = serializers.ExecutionEnvironmentSerializer + swagger_topic = "Execution Environments" class ProjectList(ListCreateAPIView): diff --git a/awx/api/views/organization.py b/awx/api/views/organization.py index b0955a3a42..b33259a8ad 100644 --- a/awx/api/views/organization.py +++ b/awx/api/views/organization.py @@ -150,6 +150,7 @@ class OrganizationExecutionEnvironmentsList(SubListCreateAttachDetachAPIView): parent_model = Organization relationship = 'executionenvironments' parent_key = 'organization' + swagger_topic = "Execution Environments" class OrganizationJobTemplatesList(SubListCreateAPIView):