fix: put an error message for deleting wo dictionaries #918
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I ran into an issue trying to delete a write-only dictionary, and it was difficult to understand what was happening. It returns an error:
Bad request: Not allowed to read contents of write_only dictionary
, which doesn't make any sense, since I'm trying to delete it.I see there's a check for deleting a dictionary which lists the contents, but this won't work for write only dictionaries, so we should have a check to see if it's a write only dictionary first, and return an error to say you should have the
force_destroy
flag.TBH, I didn't understand how to add a test for this, so this PR is basically informational.