We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you have parentNode set for GET then you get errors on using PUT, DELETE, UPDATE etc if the returning JSON doesn't include that node.
Current workaround is doing this in the model config:
parentNode: function(data) { data = data || []; return data.tasks || data; }
which will get around the issue and just pass back the data returned -- will look at how that could be integrated into the adapter.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If you have parentNode set for GET then you get errors on using PUT, DELETE, UPDATE etc if the returning JSON doesn't include that node.
Current workaround is doing this in the model config:
which will get around the issue and just pass back the data returned -- will look at how that could be integrated into the adapter.
The text was updated successfully, but these errors were encountered: