Make sure we notify vars_update_on_launch from job details

This commit is contained in:
Matthew Jones
2014-05-12 13:11:43 -04:00
parent 5e484b2503
commit 22984f91cc
3 changed files with 7 additions and 1 deletions

View File

@@ -1301,6 +1301,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
return Response(data)
def post(self, request, *args, **kwargs):