You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The enchantment #1067 allows settings JSON to be added when creating either an /analyses/ or /model/ to support this the serializers have been split between:
"Read Only" ['AnalysisList', 'AnalsysisModelList'], and "Writeable" ['Analysis', 'AnalsysisModel']
When sending POST request create new objects the 'Writeable' objects are called which have a 'settings: ' section.
Problem: The return from this request is also Analysis or AnalsysisModel which is incorrect. It should be the read-only serializers.
Also check and fix that AnalysisModelList has its list of data file ids (like with AnalysisModel)
The text was updated successfully, but these errors were encountered:
Issue Description
The enchantment #1067 allows settings JSON to be added when creating either an
/analyses/
or/model/
to support this the serializers have been split between:"Read Only"
['AnalysisList', 'AnalsysisModelList']
, and "Writeable"['Analysis', 'AnalsysisModel']
When sending POST request create new objects the 'Writeable' objects are called which have a 'settings: ' section.
Problem: The return from this request is also
Analysis
orAnalsysisModel
which is incorrect. It should be the read-only serializers.Also check and fix that
AnalysisModelList
has its list of data file ids (like withAnalysisModel
)The text was updated successfully, but these errors were encountered: