fix applicationStatus
Showing
1 changed file
with
1 additions
and
5 deletions
... | @@ -246,11 +246,7 @@ se_compare_args = { | ... | @@ -246,11 +246,7 @@ se_compare_args = { |
246 | 246 | ||
247 | application_data_args = { | 247 | application_data_args = { |
248 | 'applicationId': fields.Str(required=True, validate=validate.Length(max=64)), | 248 | 'applicationId': fields.Str(required=True, validate=validate.Length(max=64)), |
249 | 'applicationStatus': fields.Int( | 249 | 'applicationStatus': fields.Str(required=False, validate=validate.Length(max=64)), |
250 | required=False, | ||
251 | missing=0, | ||
252 | validate=lambda val: val >= 0, | ||
253 | ), | ||
254 | } | 250 | } |
255 | 251 | ||
256 | applicant_data_args = { | 252 | applicant_data_args = { | ... | ... |
-
Please register or sign in to post a comment