getFilter removes object properties
Closed this issue · 0 comments
DrewImm commented
Describe the bug
Before:
{
"options": {
"enableSomething": true
}
}
After:
{
"options": {}
}
To Reproduce
Steps to reproduce the behavior:
- Create a model with a JSON column
- Add data to fill the column
- GET the resource
- Add
requestTestProbe
before and aftergetFilter
Expected behavior
getFilter
should not filter JSON columns if CanRead()
passes