Implement AC-1279, rename vars_prompt_on_launch to ask_variables_on_launch

Conflicts:
	awx/main/models/jobs.py
This commit is contained in:
Matthew Jones
2014-05-15 10:23:45 -04:00
parent a895c6beea
commit c7ed154149
5 changed files with 444 additions and 9 deletions

View File

@@ -1325,7 +1325,7 @@ class JobStart(GenericAPIView):
)
if obj.can_start:
data['passwords_needed_to_start'] = obj.passwords_needed_to_start
data['vars_prompt_on_launch'] = obj.vars_prompt_on_launch
data['ask_variables_on_launch'] = obj.ask_variables_on_launch
return Response(data)
def post(self, request, *args, **kwargs):