Allow extra_data__field_name params in update and create
Review Request #7669 — Created Oct. 1, 2015 and submitted — Latest diff uploaded
The resource
createandupdatemethods now accept keyword arguments
of the formextra_data__field_namewhich are rewritten to
extra_data.field_nameso that Review Board can understand them. This
occurs becauseextra_data.field_namecannot be used as a keyword
argument, so all extra data field updates have to built into a dict,
which must then be splatted into the appropriate method.Unit tests have been updated that cover both methods.
Ran unit tests.